diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-11-16 09:16:28 +0100 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-11-16 09:17:04 +0100 |
commit | 277504584d4cf7b3d67cd4a8cae1849b6cc700fc (patch) | |
tree | 1fbc39efc446a1498a69d9745ee43e7f40e291e5 /.dir-locals.el | |
parent | 60f2bb862f834fcb580d839ac79b30a8b4cd4167 (diff) | |
download | emacs-277504584d4cf7b3d67cd4a8cae1849b6cc700fc.tar.gz emacs-277504584d4cf7b3d67cd4a8cae1849b6cc700fc.tar.bz2 emacs-277504584d4cf7b3d67cd4a8cae1849b6cc700fc.zip |
Set vc-prepare-patches-separately to nil in .dir-locals.el
* .dir-locals.el (c-mode): Set 'vc-prepare-patches-separately'.
See https://lists.gnu.org/archive/html/emacs-devel/2022-11/msg00973.html.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index a85769b5342..f0ab46236f3 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -7,7 +7,8 @@ (emacs-lisp-docstring-fill-column . 65) (vc-git-annotate-switches . "-w") (bug-reference-url-format . "https://debbugs.gnu.org/%s") - (diff-add-log-use-relative-names . t))) + (diff-add-log-use-relative-names . t) + (vc-prepare-patches-separately . nil))) (c-mode . ((c-file-style . "GNU") (c-noise-macro-names . ("INLINE" "NO_INLINE" "ATTRIBUTE_NO_SANITIZE_UNDEFINED" "UNINIT" "CALLBACK" "ALIGN_STACK")) |