emacs: avoid backquote expression in set-face-attributes

This commit is contained in:
Jeremy Baxter 2024-07-19 11:32:21 +12:00
parent 7a1860317f
commit 9978a833db

View file

@ -44,7 +44,7 @@ will set the `:slant' attribute of `font-lock-comment-face' to the
value `italic'."
(mapc #'(lambda (l)
(apply #'set-face-attribute
`(,(car l) t ,@(cdr l))))
(append (list (car l) t) (cdr l))))
list-of-lists))
(defun touch (file-name)
"Create FILE-NAME or update its modified date."