* lisp/progmodes/elisp-mode.el (elisp--local-variables): Remove `debug'.

Remove symbol `debug' from the condition-case handler of `error'
that was added in commit f931cebce7
since it interferes on completing in an incomplete elisp form (bug#66979).
This commit is contained in:
Juri Linkov 2023-11-09 09:32:39 +02:00
parent 21f3670526
commit 1cb738a482

View file

@ -456,7 +456,7 @@ use of `macroexpand-all' as a way to find the \"underlying raw code\".")
(lambda (expander form &rest args)
(condition-case err
(apply expander form args)
((debug error)
(error
(message "Ignoring macroexpansion error: %S" err) form))))
(sexp
(unwind-protect