aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/simple.el2
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)