diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-14 16:15:49 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-14 16:15:49 +0000 |
commit | ef49d20fe8ce0d3381519b736d8167087b7ae57e (patch) | |
tree | a5c93290eefce919ffff8905f304ec428f26da30 /lisp/facemenu.el | |
parent | ac51b1513dbb3c11db5e0dff4d48c4fd20d2801f (diff) | |
download | emacs-ef49d20fe8ce0d3381519b736d8167087b7ae57e.tar.gz |
* font-lock.el (featurep): Remove test, not useful anymore.
(facemenu-keymap): Move key binding ...
* facemenu.el (facemenu-keymap): ... here.
Diffstat (limited to 'lisp/facemenu.el')
-rw-r--r-- | lisp/facemenu.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/facemenu.el b/lisp/facemenu.el index 5e95bfd26e7..63ad704c8c4 100644 --- a/lisp/facemenu.el +++ b/lisp/facemenu.el @@ -284,6 +284,7 @@ it will remove any faces not explicitly in the list." (defvar facemenu-keymap (let ((map (make-sparse-keymap "Set face"))) (define-key map "o" (cons (purecopy "Other...") 'facemenu-set-face)) + (define-key map "\M-o" 'font-lock-fontify-block) map) "Keymap for face-changing commands. `Facemenu-update' fills in the keymap according to the bindings |