From: Juri Linkov Date: Mon, 4 Jul 2005 01:05:56 +0000 (+0000) Subject: (eval-defun-1): Remove unnecessary quotes. X-Git-Tag: emacs-pretest-22.0.90~8452 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a0c538b75c885cf01c30e1d4834fca8dd8370cb;p=emacs.git (eval-defun-1): Remove unnecessary quotes. --- 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))))