aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-12-11 01:20:04 +0000
committerGlenn Morris2009-12-11 01:20:04 +0000
commitfe03f49a4aed4076ab3d49c84dccba60866e4dba (patch)
treee191c051ec1d0b7e4b5279da28f78b09596d1b1e
parent345427f02a683ae09ebf1f9d4f0794da9c5a0299 (diff)
downloademacs-fe03f49a4aed4076ab3d49c84dccba60866e4dba.tar.gz
emacs-fe03f49a4aed4076ab3d49c84dccba60866e4dba.zip
(emacs-lisp-mode-map): Standardize the capitalization of some menu entries.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/lisp-mode.el12
2 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ce630f30b2..6885f859c03 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-12-11 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
4 capitalization of some menu entries.
5
12009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br> 62009-12-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2 7
3 * whitespace.el (whitespace-display-char-on): Asure 8 * whitespace.el (whitespace-display-char-on): Asure
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 7e5d89c66dc..2e86c67702b 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -296,17 +296,17 @@ font-lock keywords will not be case sensitive."
296 :help ,(purecopy "Construct a regexp interactively"))) 296 :help ,(purecopy "Construct a regexp interactively")))
297 (define-key menu-map [tracing] (cons (purecopy "Tracing") tracing-map)) 297 (define-key menu-map [tracing] (cons (purecopy "Tracing") tracing-map))
298 (define-key tracing-map [tr-a] 298 (define-key tracing-map [tr-a]
299 `(menu-item ,(purecopy "Untrace all") untrace-all 299 `(menu-item ,(purecopy "Untrace All") untrace-all
300 :help ,(purecopy "Untrace all currently traced functions"))) 300 :help ,(purecopy "Untrace all currently traced functions")))
301 (define-key tracing-map [tr-uf] 301 (define-key tracing-map [tr-uf]
302 `(menu-item ,(purecopy "Untrace function...") untrace-function 302 `(menu-item ,(purecopy "Untrace function...") untrace-function
303 :help ,(purecopy "Untrace function, and possibly activate all remaining advice"))) 303 :help ,(purecopy "Untrace function, and possibly activate all remaining advice")))
304 (define-key tracing-map [tr-sep] menu-bar-separator) 304 (define-key tracing-map [tr-sep] menu-bar-separator)
305 (define-key tracing-map [tr-q] 305 (define-key tracing-map [tr-q]
306 `(menu-item ,(purecopy "Trace function quietly...") trace-function-background 306 `(menu-item ,(purecopy "Trace Function Quietly...") trace-function-background
307 :help ,(purecopy "Trace the function with trace output going quietly to a buffer"))) 307 :help ,(purecopy "Trace the function with trace output going quietly to a buffer")))
308 (define-key tracing-map [tr-f] 308 (define-key tracing-map [tr-f]
309 `(menu-item ,(purecopy "Trace function...") trace-function 309 `(menu-item ,(purecopy "Trace Function...") trace-function
310 :help ,(purecopy "Trace the function given as an argument"))) 310 :help ,(purecopy "Trace the function given as an argument")))
311 (define-key menu-map [profiling] (cons (purecopy "Profiling") prof-map)) 311 (define-key menu-map [profiling] (cons (purecopy "Profiling") prof-map))
312 (define-key prof-map [prof-restall] 312 (define-key prof-map [prof-restall]
@@ -351,16 +351,16 @@ font-lock keywords will not be case sensitive."
351 :keys ,(purecopy "C-u C-M-x"))) 351 :keys ,(purecopy "C-u C-M-x")))
352 (define-key menu-map [separator-byte] menu-bar-separator) 352 (define-key menu-map [separator-byte] menu-bar-separator)
353 (define-key menu-map [disas] 353 (define-key menu-map [disas]
354 `(menu-item ,(purecopy "Disassemble byte compiled object...") disassemble 354 `(menu-item ,(purecopy "Disassemble Byte Compiled Object...") disassemble
355 :help ,(purecopy "Print disassembled code for OBJECT in a buffer"))) 355 :help ,(purecopy "Print disassembled code for OBJECT in a buffer")))
356 (define-key menu-map [byte-recompile] 356 (define-key menu-map [byte-recompile]
357 `(menu-item ,(purecopy "Byte-recompile Directory...") byte-recompile-directory 357 `(menu-item ,(purecopy "Byte-recompile Directory...") byte-recompile-directory
358 :help ,(purecopy "Recompile every `.el' file in DIRECTORY that needs recompilation"))) 358 :help ,(purecopy "Recompile every `.el' file in DIRECTORY that needs recompilation")))
359 (define-key menu-map [emacs-byte-compile-and-load] 359 (define-key menu-map [emacs-byte-compile-and-load]
360 `(menu-item ,(purecopy "Byte-compile And Load") emacs-lisp-byte-compile-and-load 360 `(menu-item ,(purecopy "Byte-compile and Load") emacs-lisp-byte-compile-and-load
361 :help ,(purecopy "Byte-compile the current file (if it has changed), then load compiled code"))) 361 :help ,(purecopy "Byte-compile the current file (if it has changed), then load compiled code")))
362 (define-key menu-map [byte-compile] 362 (define-key menu-map [byte-compile]
363 `(menu-item ,(purecopy "Byte-compile This File") emacs-lisp-byte-compile 363 `(menu-item ,(purecopy "Byte-compile this File") emacs-lisp-byte-compile
364 :help ,(purecopy "Byte compile the file containing the current buffer"))) 364 :help ,(purecopy "Byte compile the file containing the current buffer")))
365 (define-key menu-map [separator-eval] menu-bar-separator) 365 (define-key menu-map [separator-eval] menu-bar-separator)
366 (define-key menu-map [ielm] 366 (define-key menu-map [ielm]