# HG changeset patch # User Juri Linkov # Date 1120439156 0 # Node ID 7f1acc9f03998dd4809bc3765756f2bff4aa3e19 # Parent 56d2561b1c9f9bd7c4bba809363dcfa64122a594 (eval-defun-1): Remove unnecessary quotes. diff -r 56d2561b1c9f -r 7f1acc9f0399 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Mon Jul 04 01:05:26 2005 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Mon Jul 04 01:05:56 2005 +0000 @@ -631,10 +631,10 @@ ;; 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))))