comparison lisp/emacs-lisp/lisp-mode.el @ 99713:3564a29838cf

(emacs-lisp-mode-map): Fix a/an typo. Use the imperative for all help strings.
author Glenn Morris <rgm@gnu.org>
date Wed, 19 Nov 2008 04:32:35 +0000
parents 9241443c239d
children fa6fe6da548a
comparison
equal deleted inserted replaced
99712:5436066cf627 99713:3564a29838cf
289 '(menu-item "Construct Regexp" re-builder 289 '(menu-item "Construct Regexp" re-builder
290 :help "Construct a regexp interactively")) 290 :help "Construct a regexp interactively"))
291 (define-key menu-map [tracing] (cons "Tracing" tracing-map)) 291 (define-key menu-map [tracing] (cons "Tracing" tracing-map))
292 (define-key tracing-map [tr-a] 292 (define-key tracing-map [tr-a]
293 '(menu-item "Untrace all" untrace-all 293 '(menu-item "Untrace all" untrace-all
294 :help "Untraces all currently traced functions")) 294 :help "Untrace all currently traced functions"))
295 (define-key tracing-map [tr-uf] 295 (define-key tracing-map [tr-uf]
296 '(menu-item "Untrace function..." untrace-function 296 '(menu-item "Untrace function..." untrace-function
297 :help "Untraces FUNCTION and possibly activates all remaining advice")) 297 :help "Untrace function, and possibly activate all remaining advice"))
298 (define-key tracing-map [tr-sep] '("--")) 298 (define-key tracing-map [tr-sep] '("--"))
299 (define-key tracing-map [tr-q] 299 (define-key tracing-map [tr-q]
300 '(menu-item "Trace function quietly..." trace-function-background 300 '(menu-item "Trace function quietly..." trace-function-background
301 :help "Trace the function with trace output going quietly to a buffer")) 301 :help "Trace the function with trace output going quietly to a buffer"))
302 (define-key tracing-map [tr-f] 302 (define-key tracing-map [tr-f]
303 '(menu-item "Trace function..." trace-function 303 '(menu-item "Trace function..." trace-function
304 :help "Trace the function given as a argument")) 304 :help "Trace the function given as an argument"))
305 (define-key menu-map [profiling] (cons "Profiling" prof-map)) 305 (define-key menu-map [profiling] (cons "Profiling" prof-map))
306 (define-key prof-map [prof-restall] 306 (define-key prof-map [prof-restall]
307 '(menu-item "Remove Instrumentation for All Functions" elp-restore-all 307 '(menu-item "Remove Instrumentation for All Functions" elp-restore-all
308 :help "Restore the original definitions of all functions being profiled")) 308 :help "Restore the original definitions of all functions being profiled"))
309 (define-key prof-map [prof-restfunc] 309 (define-key prof-map [prof-restfunc]