diff options
author | Juri Linkov <juri@jurta.org> | 2005-07-04 01:05:56 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-07-04 01:05:56 +0000 |
commit | 2a0c538b75c885cf01c30e1d4834fca8dd8370cb (patch) | |
tree | 7d48deefb31de937a87f9faf58f4c57bd352aa95 /lisp/emacs-lisp | |
parent | 383168ec160d3a896df41189c7ec8dda069b420f (diff) | |
download | emacs-2a0c538b75c885cf01c30e1d4834fca8dd8370cb.tar.gz emacs-2a0c538b75c885cf01c30e1d4834fca8dd8370cb.tar.bz2 emacs-2a0c538b75c885cf01c30e1d4834fca8dd8370cb.zip |
(eval-defun-1): Remove unnecessary quotes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 6 |
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." ;; Resetting `saved-face' temporarily to nil is needed to let ;; `defface' change the spec, regardless of a saved spec. (prog1 `(prog1 ,form - (put ',(eval (nth 1 form)) 'saved-face + (put ,(nth 1 form) 'saved-face ',(get (eval (nth 1 form)) 'saved-face)) - (put ',(eval (nth 1 form)) 'customized-face - ',(eval (nth 2 form)))) + (put ,(nth 1 form) 'customized-face + ,(nth 2 form))) (put (eval (nth 1 form)) 'saved-face nil))) ((eq (car form) 'progn) (cons 'progn (mapcar 'eval-defun-1 (cdr form)))) |