diff options
-rw-r--r-- | .dir-locals.el | 2 | ||||
-rw-r--r-- | contrib/vimrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 44a0db68..b07a0dc 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)))) diff --git a/contrib/vimrc b/contrib/vimrc index 356d455..b7a8ab7 100644 --- a/contrib/vimrc +++ b/contrib/vimrc @@ -42,7 +42,7 @@ function! SetStyle() if &filetype == "gitcommit" setlocal textwidth=72 else - setlocal textwidth=80 + setlocal textwidth=79 endif setlocal formatoptions-=ro formatoptions+=cqlt if index(l:c_exts, l:ext) != -1 || &filetype == "c" || &filetype == "cpp" |