emacs: avoid backquote expression in set-face-attributes
This commit is contained in:
parent
7a1860317f
commit
9978a833db
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ will set the `:slant' attribute of `font-lock-comment-face' to the
|
||||||
value `italic'."
|
value `italic'."
|
||||||
(mapc #'(lambda (l)
|
(mapc #'(lambda (l)
|
||||||
(apply #'set-face-attribute
|
(apply #'set-face-attribute
|
||||||
`(,(car l) t ,@(cdr l))))
|
(append (list (car l) t) (cdr l))))
|
||||||
list-of-lists))
|
list-of-lists))
|
||||||
(defun touch (file-name)
|
(defun touch (file-name)
|
||||||
"Create FILE-NAME or update its modified date."
|
"Create FILE-NAME or update its modified date."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue