aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/lisp-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 972fe6bafc8..1ee4665005a 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -631,10 +631,10 @@ Reinitialize the face according to the `defface' specification."
631 ;; Resetting `saved-face' temporarily to nil is needed to let 631 ;; Resetting `saved-face' temporarily to nil is needed to let
632 ;; `defface' change the spec, regardless of a saved spec. 632 ;; `defface' change the spec, regardless of a saved spec.
633 (prog1 `(prog1 ,form 633 (prog1 `(prog1 ,form
634 (put ',(eval (nth 1 form)) 'saved-face 634 (put ,(nth 1 form) 'saved-face
635 ',(get (eval (nth 1 form)) 'saved-face)) 635 ',(get (eval (nth 1 form)) 'saved-face))
636 (put ',(eval (nth 1 form)) 'customized-face 636 (put ,(nth 1 form) 'customized-face
637 ',(eval (nth 2 form)))) 637 ,(nth 2 form)))
638 (put (eval (nth 1 form)) 'saved-face nil))) 638 (put (eval (nth 1 form)) 'saved-face nil)))
639 ((eq (car form) 'progn) 639 ((eq (car form) 'progn)
640 (cons 'progn (mapcar 'eval-defun-1 (cdr form)))) 640 (cons 'progn (mapcar 'eval-defun-1 (cdr form))))