]> git.eshelyaron.com Git - emacs.git/commitdiff
(facemenu-justification-menu): binding fixed.
authorBoris Goldowsky <boris@gnu.org>
Thu, 23 Feb 1995 18:45:30 +0000 (18:45 +0000)
committerBoris Goldowsky <boris@gnu.org>
Thu, 23 Feb 1995 18:45:30 +0000 (18:45 +0000)
lisp/facemenu.el

index b7307b6e3e3774ac644038893ae8197c186cb957..7cbc338bad78a556ff4973bea6ad976af28e912b 100644 (file)
@@ -160,11 +160,11 @@ when they are created.")
 
 (defvar facemenu-justification-menu
   (let ((map (make-sparse-keymap "Justification")))
-    (define-key map [?c] (cons "Center" 'set-justification-center))
-    (define-key map [?b] (cons "Full" 'set-justification-full))
-    (define-key map [?r] (cons "Right" 'set-justification-right))
-    (define-key map [?l] (cons "Left" 'set-justification-left))
-    (define-key map [?u] (cons "Unfilled" 'set-nofill))
+    (define-key map "c" (cons "Center" 'set-justification-center))
+    (define-key map "f" (cons "Full" 'set-justification-full))
+    (define-key map "r" (cons "Right" 'set-justification-right))
+    (define-key map "l" (cons "Left" 'set-justification-left))
+    (define-key map "n" (cons "Unfilled" 'set-justification-none))
     map)
   "Submenu for text justification commands.")
 (defalias 'facemenu-justification-menu facemenu-justification-menu)