diff options
| author | Dan Nicolaescu | 2008-03-22 17:51:17 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-03-22 17:51:17 +0000 |
| commit | 935f7c5a64fd4fddb602e8483050c230c9c6bbc3 (patch) | |
| tree | 9d425d5ed4765d79d76216fdc49a362ea490e8e7 | |
| parent | 8e4e4aefb66b5333c97bfb0dfba0750716a77415 (diff) | |
| download | emacs-935f7c5a64fd4fddb602e8483050c230c9c6bbc3.tar.gz emacs-935f7c5a64fd4fddb602e8483050c230c9c6bbc3.zip | |
(emacs-lisp-mode-map): Add ... where
appropriate.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 353bf47b5e8..9573f31e790 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-03-22 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add ... where | ||
| 4 | appropriate. | ||
| 5 | |||
| 1 | 2008-03-22 Alexandre Julliard <julliard@winehq.org> | 6 | 2008-03-22 Alexandre Julliard <julliard@winehq.org> |
| 2 | 7 | ||
| 3 | * vc-git.el (vc-git--empty-db-p) | 8 | * vc-git.el (vc-git--empty-db-p) |
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 @@ | |||
| 291 | '(menu-item "Remove Instrumentation for All Functions" elp-restore-all | 291 | '(menu-item "Remove Instrumentation for All Functions" elp-restore-all |
| 292 | :help "Restore the original definitions of all functions being profiled")) | 292 | :help "Restore the original definitions of all functions being profiled")) |
| 293 | (define-key prof-map [prof-restfunc] | 293 | (define-key prof-map [prof-restfunc] |
| 294 | '(menu-item "Remove Instrumentation for Function" elp-restore-function | 294 | '(menu-item "Remove Instrumentation for Function..." elp-restore-function |
| 295 | :help "Restore an instrumented function to its original definition")) | 295 | :help "Restore an instrumented function to its original definition")) |
| 296 | 296 | ||
| 297 | (define-key prof-map [sep-rem] '("--")) | 297 | (define-key prof-map [sep-rem] '("--")) |
| @@ -299,16 +299,16 @@ | |||
| 299 | '(menu-item "Reset Counters for All Functions" elp-reset-all | 299 | '(menu-item "Reset Counters for All Functions" elp-reset-all |
| 300 | :help "Reset the profiling information for all functions being profiled")) | 300 | :help "Reset the profiling information for all functions being profiled")) |
| 301 | (define-key prof-map [prof-resfunc] | 301 | (define-key prof-map [prof-resfunc] |
| 302 | '(menu-item "Reset Counters for Function" elp-reset-function | 302 | '(menu-item "Reset Counters for Function..." elp-reset-function |
| 303 | :help "Reset the profiling information for a function")) | 303 | :help "Reset the profiling information for a function")) |
| 304 | (define-key prof-map [prof-res] | 304 | (define-key prof-map [prof-res] |
| 305 | '(menu-item "Show Profiling Results" elp-results | 305 | '(menu-item "Show Profiling Results" elp-results |
| 306 | :help "Display current profiling results")) | 306 | :help "Display current profiling results")) |
| 307 | (define-key prof-map [prof-pack] | 307 | (define-key prof-map [prof-pack] |
| 308 | '(menu-item "Instrument Package" elp-instrument-package | 308 | '(menu-item "Instrument Package..." elp-instrument-package |
| 309 | :help "Instrument for profiling all function that start with a prefix")) | 309 | :help "Instrument for profiling all function that start with a prefix")) |
| 310 | (define-key prof-map [prof-func] | 310 | (define-key prof-map [prof-func] |
| 311 | '(menu-item "Instrument Function" elp-instrument-function | 311 | '(menu-item "Instrument Function..." elp-instrument-function |
| 312 | :help "Instrument a function for profiling")) | 312 | :help "Instrument a function for profiling")) |
| 313 | (define-key menu-map [edebug-defun] | 313 | (define-key menu-map [edebug-defun] |
| 314 | '(menu-item "Instrument Function for Debugging" edebug-defun | 314 | '(menu-item "Instrument Function for Debugging" edebug-defun |
| @@ -316,7 +316,7 @@ | |||
| 316 | :keys "C-u C-M-x")) | 316 | :keys "C-u C-M-x")) |
| 317 | (define-key menu-map [separator-byte] '("--")) | 317 | (define-key menu-map [separator-byte] '("--")) |
| 318 | (define-key menu-map [disas] | 318 | (define-key menu-map [disas] |
| 319 | '(menu-item "Disassemble byte compiled object" disassemble | 319 | '(menu-item "Disassemble byte compiled object..." disassemble |
| 320 | :help "Print disassembled code for OBJECT in a buffer")) | 320 | :help "Print disassembled code for OBJECT in a buffer")) |
| 321 | (define-key menu-map [byte-recompile] | 321 | (define-key menu-map [byte-recompile] |
| 322 | '(menu-item "Byte-recompile Directory..." byte-recompile-directory | 322 | '(menu-item "Byte-recompile Directory..." byte-recompile-directory |