diff options
| author | Braun Gábor | 2019-11-14 06:45:37 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-11-14 06:45:37 +0100 |
| commit | c9ede465de7e1aaa692f12538adf2e35b9ed2748 (patch) | |
| tree | 1a4feebd38a827221d280de5ed0d77e4cb247319 | |
| parent | 6e2fd351c84c048e4646aa600c43c5796cf46273 (diff) | |
| download | emacs-c9ede465de7e1aaa692f12538adf2e35b9ed2748.tar.gz emacs-c9ede465de7e1aaa692f12538adf2e35b9ed2748.zip | |
Make clone-buffer not unbind global variable
* lisp/simple.el (clone-buffer): Make clone-buffer not globally
unset locally void variable (bug#38179).
Copyright-paperwork-exempt: yes
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 872fb13237a..e3ac7094088 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -8658,7 +8658,7 @@ after it has been set up properly in other respects." | |||
| 8658 | (mapc (lambda (v) | 8658 | (mapc (lambda (v) |
| 8659 | (condition-case () | 8659 | (condition-case () |
| 8660 | (if (symbolp v) | 8660 | (if (symbolp v) |
| 8661 | (makunbound v) | 8661 | (makunbound (make-local-variable v)) |
| 8662 | (set (make-local-variable (car v)) (cdr v))) | 8662 | (set (make-local-variable (car v)) (cdr v))) |
| 8663 | (setting-constant nil))) ;E.g. for enable-multibyte-characters. | 8663 | (setting-constant nil))) ;E.g. for enable-multibyte-characters. |
| 8664 | lvars) | 8664 | lvars) |