(eval-defun-1): Remove unnecessary quotes.
This commit is contained in:
parent
383168ec16
commit
2a0c538b75
1 changed files with 3 additions and 3 deletions
|
@ -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))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue