* lisp/emacs-lisp/edebug.el (edebug-mode): Fix typo.
Fixes: debbugs:14144
This commit is contained in:
parent
8acdeb7104
commit
6fcdab68b3
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
|
||||
|
||||
* emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
|
||||
timer (bug#14156).
|
||||
|
||||
|
|
|
@ -3814,7 +3814,7 @@ Options:
|
|||
(remove-hook 'kill-buffer-hook 'edebug-kill-buffer t))
|
||||
(pcase-dolist (`(,var . ,val) '((buffer-read-only . t)))
|
||||
(push
|
||||
(if (local-variable-p var) var (cons var (symbol-value var)))
|
||||
(if (local-variable-p var) (cons var (symbol-value var)) var)
|
||||
edebug--mode-saved-vars)
|
||||
(set (make-local-variable var) val))
|
||||
;; Append `edebug-kill-buffer' to the hook to avoid interfering with
|
||||
|
|
Loading…
Add table
Reference in a new issue