emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el,v


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el,v
Date: Mon, 21 Apr 2008 05:02:08 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/04/21 05:02:07

Index: progmodes/asm-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/progmodes/asm-mode.el,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -b -r1.42 -r1.43
--- progmodes/asm-mode.el       10 Apr 2008 14:10:33 -0000      1.42
+++ progmodes/asm-mode.el       21 Apr 2008 05:02:06 -0000      1.43
@@ -81,12 +81,15 @@
     (define-key map "\C-m"     'newline-and-indent)
     (define-key map [menu-bar] (make-sparse-keymap))
     (define-key map [menu-bar asm-mode] (cons "Asm" map))
-    (define-key map [asm-colon]
-      '("Insert Colon" . asm-colon))
     (define-key map [comment-region]
-      '("Comment Region" . comment-region))
+      '(menu-item "Comment Region" comment-region
+                 :help "Comment or uncomment each line in the region"))
     (define-key map [newline-and-indent]
-      '("Insert Newline and Indent" . newline-and-indent))
+      '(menu-item "Insert Newline and Indent" newline-and-indent
+                 :help "Insert a newline, then indent according to major 
mode"))
+    (define-key map [asm-colon]
+      '(menu-item "Insert Colon" asm-colon
+                 :help "Insert a colon; if it follows a label, delete the 
label's indentation"))
     map)
   "Keymap for Asm mode.")
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]