(eval-defun-1): Remove unnecessary quotes.

This commit is contained in:
Juri Linkov 2005-07-04 01:05:56 +00:00
parent 383168ec16
commit 2a0c538b75

View file

@ -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))))