diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-22 17:51:17 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-22 17:51:17 +0000 |
commit | 935f7c5a64fd4fddb602e8483050c230c9c6bbc3 (patch) | |
tree | 9d425d5ed4765d79d76216fdc49a362ea490e8e7 /lisp/emacs-lisp | |
parent | 8e4e4aefb66b5333c97bfb0dfba0750716a77415 (diff) | |
download | emacs-935f7c5a64fd4fddb602e8483050c230c9c6bbc3.tar.gz |
(emacs-lisp-mode-map): Add ... where
appropriate.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 1d551e0eae2..29552a7dcd8 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -291,7 +291,7 @@ '(menu-item "Remove Instrumentation for All Functions" elp-restore-all :help "Restore the original definitions of all functions being profiled")) (define-key prof-map [prof-restfunc] - '(menu-item "Remove Instrumentation for Function" elp-restore-function + '(menu-item "Remove Instrumentation for Function..." elp-restore-function :help "Restore an instrumented function to its original definition")) (define-key prof-map [sep-rem] '("--")) @@ -299,16 +299,16 @@ '(menu-item "Reset Counters for All Functions" elp-reset-all :help "Reset the profiling information for all functions being profiled")) (define-key prof-map [prof-resfunc] - '(menu-item "Reset Counters for Function" elp-reset-function + '(menu-item "Reset Counters for Function..." elp-reset-function :help "Reset the profiling information for a function")) (define-key prof-map [prof-res] '(menu-item "Show Profiling Results" elp-results :help "Display current profiling results")) (define-key prof-map [prof-pack] - '(menu-item "Instrument Package" elp-instrument-package + '(menu-item "Instrument Package..." elp-instrument-package :help "Instrument for profiling all function that start with a prefix")) (define-key prof-map [prof-func] - '(menu-item "Instrument Function" elp-instrument-function + '(menu-item "Instrument Function..." elp-instrument-function :help "Instrument a function for profiling")) (define-key menu-map [edebug-defun] '(menu-item "Instrument Function for Debugging" edebug-defun @@ -316,7 +316,7 @@ :keys "C-u C-M-x")) (define-key menu-map [separator-byte] '("--")) (define-key menu-map [disas] - '(menu-item "Disassemble byte compiled object" disassemble + '(menu-item "Disassemble byte compiled object..." disassemble :help "Print disassembled code for OBJECT in a buffer")) (define-key menu-map [byte-recompile] '(menu-item "Byte-recompile Directory..." byte-recompile-directory |