diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-03-06 20:44:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-03-06 20:44:33 +0000 |
commit | 6be7d8dbeb7adc8bb9ab28d0bf5ed3c4570f3ed8 (patch) | |
tree | 7598a5cfaa5ae199566458a3ad48ce11ddfeb307 /lisp | |
parent | bf7970c5645ce057c15de09217cf8ae46a9271df (diff) | |
download | emacs-6be7d8dbeb7adc8bb9ab28d0bf5ed3c4570f3ed8.tar.gz |
(global-map): Bind M-o, not M-g.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/facemenu.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/facemenu.el b/lisp/facemenu.el index 127b8fe608b..a996d4c15e7 100644 --- a/lisp/facemenu.el +++ b/lisp/facemenu.el @@ -39,8 +39,8 @@ ;; modifications before inserting or typing anything. ;; ;; Faces can be selected from the keyboard as well. -;; The standard keybindings are M-g (or ESC g) + letter: -;; M-g i = "set italic", M-g b = "set bold", etc. +;; The standard keybindings are M-o (or ESC o) + letter: +;; M-o i = "set italic", M-o b = "set bold", etc. ;;; Customization: ;; An alternative set of keybindings that may be easier to type can be set up @@ -91,12 +91,12 @@ (require 'button)) ;;; Provide some binding for startup: -;;;###autoload (define-key global-map "\M-g" 'facemenu-keymap) +;;;###autoload (define-key global-map "\M-o" 'facemenu-keymap) ;;;###autoload (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) ;; Global bindings: (define-key global-map [C-down-mouse-2] 'facemenu-menu) -(define-key global-map "\M-g" 'facemenu-keymap) +(define-key global-map "\M-o" 'facemenu-keymap) (defgroup facemenu nil "Create a face menu for interactively adding fonts to text" |