0
我要創建宏,將改變這樣的:宏包設置面屬性不工作
(set-face-attribute 'term-color-blue nil :foreground "#5555FF")
到
(term-color blue "#5555FF")
我已經嘗試:
(defmacro term-color (name color)
`(set-face-attribute ',(intern (concat "term-color-" (symbol-name name)))
:foreground ,color))
但得到錯誤wrong-type-argument symbolp "#5555FF"
,我的宏有什麼問題?
Macroexpand回報:
(set-face-attribute (quote term-color-blue) :foreground "#5555FF")
通過15秒打我! @jcubic,請接受這一個。 – Dan
我怎麼沒注意到,謝謝。 – jcubic