Fix fontification of " in edit-kbd-macro
* lisp/edmacro.el (edit-kbd-macro): Fix fontification when editing keyboard macros containing the " character.
This commit is contained in:
parent
2137fdfd55
commit
dbbcf4a659
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ With a prefix argument, format the macro in a more concise way."
|
||||||
(setq-local edmacro-finish-hook finish-hook)
|
(setq-local edmacro-finish-hook finish-hook)
|
||||||
(setq-local edmacro-store-hook store-hook)
|
(setq-local edmacro-store-hook store-hook)
|
||||||
(setq-local font-lock-defaults
|
(setq-local font-lock-defaults
|
||||||
'(edmacro-mode-font-lock-keywords nil nil nil nil))
|
'(edmacro-mode-font-lock-keywords nil nil ((?\" . "w"))))
|
||||||
(setq font-lock-multiline nil)
|
(setq font-lock-multiline nil)
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(insert (substitute-command-keys
|
(insert (substitute-command-keys
|
||||||
|
|
Loading…
Add table
Reference in a new issue