* 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:
parent
21f3670526
commit
1cb738a482
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue