From: Richard Levitte Date: Mon, 7 Sep 2015 22:59:50 +0000 (+0200) Subject: Adjust the general fill-column in doc/dir-locals.example.el X-Git-Tag: OpenSSL_1_1_0-pre1~644 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=e51fb759a6f1d81eee422703dc424aaf1e63a80b 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 --- 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")))