diff options
author | Richard Earnshaw <rearnsha@arm.com> | 2021-07-20 11:06:01 +0100 |
---|---|---|
committer | Richard Earnshaw <rearnsha@arm.com> | 2021-07-20 11:14:18 +0100 |
commit | b51de13d81920f92ebe067b9c76e9d2195685099 (patch) | |
tree | 5393f917d212109c766f7100de16a775a341df9f /.dir-locals.el | |
parent | b7e450c97340789687b65ab013dbe25e012b0b6c (diff) | |
download | gcc-b51de13d81920f92ebe067b9c76e9d2195685099.tar.gz |
Limit fill-column to 79
The current line-length limit is set to 80, but that allows a
character to appear in the 80th column, and that causes emacs to
display a line-wrap followed by a blank line when the display/window
width is 80 columns. Furthermore, this seems to contradict the
coding-style rules on the wiki which suggest that the line limit
should be 79.
So reduce the line width in both the emacs control file and the
contrib vimrc file to 79 characters.
ChangeLog:
* .dir-locals.el (c-mode): Change fill-column to 79.
contrib/ChangeLog:
* vimrc (textwidth): Change non-gitcommit length to 79.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 44a0db68241..b07a0dc50d8 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -20,4 +20,4 @@ (nil . ((bug-reference-url-format . "http://gcc.gnu.org/PR%s"))) (c-mode . ((c-file-style . "GNU") (indent-tabs-mode . t) - (fill-column . 80)))) + (fill-column . 79)))) |