diff options
author | Glenn Morris <rgm@gnu.org> | 2008-11-19 04:32:35 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-11-19 04:32:35 +0000 |
commit | be9b46cb09bab1a9d944ab610e202110fa42d7d1 (patch) | |
tree | 8f5e49773065ed37998cbabed409493dcf18e894 /lisp/emacs-lisp/lisp-mode.el | |
parent | d5259d01c8b19c043b68c821af49d81fcf7b01b0 (diff) | |
download | emacs-be9b46cb09bab1a9d944ab610e202110fa42d7d1.tar.gz |
(emacs-lisp-mode-map): Fix a/an typo.
Use the imperative for all help strings.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 25dad344e27..81003d7f9a2 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -291,17 +291,17 @@ KEYWORDS-CASE-SENSITIVE means that for font-lock keywords will not be case sensi (define-key menu-map [tracing] (cons "Tracing" tracing-map)) (define-key tracing-map [tr-a] '(menu-item "Untrace all" untrace-all - :help "Untraces all currently traced functions")) + :help "Untrace all currently traced functions")) (define-key tracing-map [tr-uf] '(menu-item "Untrace function..." untrace-function - :help "Untraces FUNCTION and possibly activates all remaining advice")) + :help "Untrace function, and possibly activate all remaining advice")) (define-key tracing-map [tr-sep] '("--")) (define-key tracing-map [tr-q] '(menu-item "Trace function quietly..." trace-function-background :help "Trace the function with trace output going quietly to a buffer")) (define-key tracing-map [tr-f] '(menu-item "Trace function..." trace-function - :help "Trace the function given as a argument")) + :help "Trace the function given as an argument")) (define-key menu-map [profiling] (cons "Profiling" prof-map)) (define-key prof-map [prof-restall] '(menu-item "Remove Instrumentation for All Functions" elp-restore-all |