diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-09 20:56:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-09 20:56:17 +0000 |
commit | 535d2617a0c1ae89cd7aad5a871f97470c77eeb8 (patch) | |
tree | d48a8a012df221a5cb27844ffc3e664863a8c381 /lisp/facemenu.el | |
parent | 1347899b3c8035379109510e8e069c2c335ce7da (diff) | |
download | emacs-535d2617a0c1ae89cd7aad5a871f97470c77eeb8.tar.gz |
(facemenu-update): Use C-down-mouse-2 for the menu.
Doc fixes.
Diffstat (limited to 'lisp/facemenu.el')
-rw-r--r-- | lisp/facemenu.el | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lisp/facemenu.el b/lisp/facemenu.el index e5e2ba81001..f8d3dbdab39 100644 --- a/lisp/facemenu.el +++ b/lisp/facemenu.el @@ -30,11 +30,6 @@ ;; rather than the general Face submenu. Such faces can also be created on ;; demand from the "Other..." menu items. -;;; Installation: -;; Put this file somewhere on emacs's load-path, and put -;; (require 'facemenu) -;; in your .emacs file. - ;;; Usage: ;; Selecting a face from the menu or typing the keyboard equivalent will ;; change the region to use that face. If you use transient-mark-mode and the @@ -146,12 +141,12 @@ changing it.") (define-key map [fg] (cons "Foreground Color" facemenu-foreground-menu)) (define-key map [face] (cons "Face" facemenu-face-menu)) map) - "Facemenu top-level menu keymap") + "Facemenu top-level menu keymap.") (defvar facemenu-keymap (make-sparse-keymap "Set face") "Map for keyboard face-changing commands. `Facemenu-update' fills in the keymap according to the bindings -requested in facemenu-keybindings.") +requested in `facemenu-keybindings'.") ;;; Internal Variables @@ -170,7 +165,7 @@ variables." (interactive) ;; Global bindings: - (define-key global-map [C-down-mouse-3] facemenu-menu) + (define-key global-map [C-down-mouse-2] facemenu-menu) (if facemenu-key (define-key global-map facemenu-key facemenu-keymap)) ;; Add each defined face to the menu. |