diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-04 13:15:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-04 16:37:59 +0200 |
commit | afb325d84227fe84adda60c03a9015d7473c0b85 (patch) | |
tree | a6690851fe31c82a7dcd76c3c27cbb39409d3d2a /.dir-locals.el | |
parent | 491dbac41579838031d8a4910b05bdd33030dc87 (diff) |
Set Emacs config variable sentence-end-double-space.
Users using a non-English environment may have set this to `nil´, which
leads to fill-paragraph removing the second space.
* .dir-locals.el: Set sentence-end-double-space to true.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 572a35f828..adcc50c560 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -3,6 +3,7 @@ ((nil . ((fill-column . 78) (tab-width . 8) + (sentence-end-double-space . t) ;; For use with 'bug-reference-prog-mode'. (bug-reference-url-format . "http://bugs.gnu.org/%s") |