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:
Alan Mackenzie 2022-08-27 09:33:52 +00:00
parent 56aa52c346
commit 0f37808195

View file

@ -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)