Adjust the general fill-column in doc/dir-locals.example.el
authorRichard Levitte <levitte@openssl.org>
Mon, 7 Sep 2015 22:59:50 +0000 (00:59 +0200)
committerRichard Levitte <levitte@openssl.org>
Mon, 7 Sep 2015 22:59:50 +0000 (00:59 +0200)
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>
doc/dir-locals.example.el

index 79d0b01108d42140cca503360e19597b2aabe19e..dc0d5548aa1a86364766a50b0364057a1b2e2055 100644 (file)
@@ -9,7 +9,7 @@
 
 ((nil
   (indent-tabs-mode . nil)
-  (fill-column . 78)
+  (fill-column . 70)
   )
  (c-mode
   (c-file-style . "OpenSSL-II")))