mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
a8231e00cb
It now runs internal variable setting functions after the mode hooks, no longer runs the mode hooks twice, and declares the configuration variables for noise macros and macros with semicolons as safe variables (when given suitable arguments). Fixes bug #16759 and bug #23476. * .dir-locals: Put the c-noise-macros-with-paren-names setting back into the C Mode value. * lisp/progmodes/cc-mode.el: (c-basic-common-init): Remove the call to c-make-macro-with-semi-re. (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode, awk-mode): Move c-make-noise-macro-regexps and c-make-macro-with-semi-re (where appropriate) and c-update-modeline into the :after-hook form. Remove the explicit settings of the syntax table, the abbreviation table and the local key map, since they duplicate forms generated by define-derived-mode. Remove the explicit invocation of each mode's mode hook, since they duplicate ones generated by define-derived-mode. * lisp/progmodes/cc-vars.el: (c-string-list-p, c-string-or-string-list-p): New functions. (c-noise-macro-names, c-noise-macro-with-parens-names): give the save-local-variable property c-string-list-p. (c-macro-names-with-semicolon): give the save-local-variable property c-string-or-string-list-p. * doc/misc/cc-mode.texi: (Macros with ;, Noise Macros): Note that it's not necessary to call the regexp generating functions after setting the pertinent configuration values in a mode hook.
15 lines
598 B
EmacsLisp
15 lines
598 B
EmacsLisp
((nil . ((tab-width . 8)
|
|
(sentence-end-double-space . t)
|
|
(fill-column . 70)))
|
|
(c-mode . ((c-file-style . "GNU")
|
|
(c-noise-macro-with-parens-names . ("IF_LINT"))))
|
|
(objc-mode . ((c-file-style . "GNU")))
|
|
(log-edit-mode . ((log-edit-font-lock-gnu-style . t)
|
|
(log-edit-setup-add-author . t)))
|
|
(change-log-mode . ((add-log-time-zone-rule . t)
|
|
(fill-column . 74)
|
|
(bug-reference-url-format . "http://debbugs.gnu.org/%s")
|
|
(mode . bug-reference)))
|
|
(diff-mode . ((mode . whitespace)))
|
|
(emacs-lisp-mode . ((indent-tabs-mode . nil))))
|