diff options
| author | Stefan Monnier | 2013-04-07 22:21:59 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-04-07 22:21:59 -0400 |
| commit | 6fcdab68b3e73354fb17f4c8c4f8199d6f63cf30 (patch) | |
| tree | ae9f7e52cef089ffffa032ea6fc6b0680938dfe3 | |
| parent | 8acdeb7104ad8d90f93c7dca6ee0d32149b32fc1 (diff) | |
| download | emacs-6fcdab68b3e73354fb17f4c8c4f8199d6f63cf30.tar.gz emacs-6fcdab68b3e73354fb17f4c8c4f8199d6f63cf30.zip | |
* lisp/emacs-lisp/edebug.el (edebug-mode): Fix typo.
Fixes: debbugs:14144
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f5cf9d078e7..95aadd40fd6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144). | ||
| 4 | |||
| 3 | * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled | 5 | * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled |
| 4 | timer (bug#14156). | 6 | timer (bug#14156). |
| 5 | 7 | ||
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 5929ea7a856..867f079ce5f 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el | |||
| @@ -3814,7 +3814,7 @@ Options: | |||
| 3814 | (remove-hook 'kill-buffer-hook 'edebug-kill-buffer t)) | 3814 | (remove-hook 'kill-buffer-hook 'edebug-kill-buffer t)) |
| 3815 | (pcase-dolist (`(,var . ,val) '((buffer-read-only . t))) | 3815 | (pcase-dolist (`(,var . ,val) '((buffer-read-only . t))) |
| 3816 | (push | 3816 | (push |
| 3817 | (if (local-variable-p var) var (cons var (symbol-value var))) | 3817 | (if (local-variable-p var) (cons var (symbol-value var)) var) |
| 3818 | edebug--mode-saved-vars) | 3818 | edebug--mode-saved-vars) |
| 3819 | (set (make-local-variable var) val)) | 3819 | (set (make-local-variable var) val)) |
| 3820 | ;; Append `edebug-kill-buffer' to the hook to avoid interfering with | 3820 | ;; Append `edebug-kill-buffer' to the hook to avoid interfering with |