CC Mode: Remove double evaluation of self-quoting function in cc-langs.el
This is a followup to Stefan Monnier's fix for bug #57065 from 2022-08-25. * lisp/progmodes/cc-langs.el (c-init-language-vars): Add a #' after the funcall.
This commit is contained in:
parent
56aa52c346
commit
0f37808195
1 changed files with 1 additions and 1 deletions
|
@ -4278,7 +4278,7 @@ This macro is expanded at compile time to a form tailored for the mode
|
|||
in question, so MODE must be a constant. Therefore MODE is not
|
||||
evaluated and should not be quoted."
|
||||
(declare (debug nil))
|
||||
`(funcall ,(c-make-init-lang-vars-fun mode)))
|
||||
`(funcall #',(c-make-init-lang-vars-fun mode)))
|
||||
|
||||
|
||||
(cc-provide 'cc-langs)
|
||||
|
|
Loading…
Add table
Reference in a new issue