summaryrefslogtreecommitdiffstats
path: root/doc/dir-locals.example.el
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-09-08 00:59:50 +0200
committerRichard Levitte <levitte@openssl.org>2015-09-08 00:59:50 +0200
commite51fb759a6f1d81eee422703dc424aaf1e63a80b (patch)
tree643aa160e63b525b26bc2bc3a1ebe0136eaa5aba /doc/dir-locals.example.el
parent6b33d10686993191a99ad758cb59fb89c3d7abda (diff)
Adjust the general fill-column in doc/dir-locals.example.el
Having a general fill-column of 78 may look nice at first sight, but if the edited text gets indented a bit afterward (such as with git comments in 'git log'), it suddenly turns not so nice on a classic 80 columns terminal. A fill-column of 70 will serve us better. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'doc/dir-locals.example.el')
-rw-r--r--doc/dir-locals.example.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/dir-locals.example.el b/doc/dir-locals.example.el
index 79d0b01108..dc0d5548aa 100644
--- a/doc/dir-locals.example.el
+++ b/doc/dir-locals.example.el
@@ -9,7 +9,7 @@
((nil
(indent-tabs-mode . nil)
- (fill-column . 78)
+ (fill-column . 70)
)
(c-mode
(c-file-style . "OpenSSL-II")))