diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-21 14:08:47 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-21 14:09:47 -0700 |
commit | c1cacb09948928287bfc32745f2a92604d3291c4 (patch) | |
tree | ffda141622df981f55d25b8171fac6691a40f47f /lisp/emulation | |
parent | 59f7943043fa4afb922f4553c9994e20c534fc57 (diff) | |
download | emacs-c1cacb09948928287bfc32745f2a92604d3291c4.tar.gz |
Avoid hard-coding "M-x command" in docstrings
* lisp/calendar/todo-mode.el (todo-mode):
* lisp/desktop.el (desktop-save-mode):
* lisp/edmacro.el (edit-kbd-macro):
* lisp/emacs-lisp/package.el (package-menu-execute):
* lisp/emulation/viper-cmd.el (viper-ask-level):
* lisp/emulation/viper-init.el (viper-expert-level):
* lisp/filesets.el (filesets-add-buffer):
* lisp/follow.el (follow-mode):
* lisp/gnus/auth-source.el (auth-sources):
* lisp/international/ogonek.el (ogonek-informacja)
(ogonek-information):
* lisp/net/tramp.el (tramp-process-actions):
* lisp/org/org-gnus.el (org-gnus-no-new-news):
* lisp/org/org.el (org-ellipsis):
* lisp/progmodes/python.el (python-shell-get-process-or-error):
* lisp/progmodes/vhdl-mode.el (vhdl-mode):
* lisp/server.el (server-start):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/userlock.el (ask-user-about-supersession-help):
* lisp/whitespace.el (whitespace-report-region):
Prefer (substitute-command-keys "`\\[foo-command]'")
to "`M-x foo-command'" in docstrings and the like.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/viper-cmd.el | 6 | ||||
-rw-r--r-- | lisp/emulation/viper-init.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 5e1620df57c..40a37c7d8b6 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -4782,10 +4782,10 @@ sensitive for VI-style look-and-feel." (setq repeated t)) (setq dont-change-unless t level-changed t) - (insert " + (insert (substitute-command-keys " Please specify your level of familiarity with the venomous VI PERil \(and the VI Plan for Emacs Rescue). -You can change it at any time by typing `M-x viper-set-expert-level RET' +You can change it at any time by typing `\\[viper-set-expert-level]' 1 -- BEGINNER: Almost all Emacs features are suppressed. Feels almost like straight Vi. File name completion and @@ -4803,7 +4803,7 @@ You can change it at any time by typing `M-x viper-set-expert-level RET' viper-electric-mode, viper-want-ctl-h-help, viper-want-emacs-keys-in-vi, and viper-want-emacs-keys-in-insert. Adjust these to your taste. -Please, specify your level now: ") +Please, specify your level now: ")) (setq viper-expert-level (- (viper-read-char-exclusive) ?0)) ) ; end while diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el index e575eee6c93..d03d703c1ed 100644 --- a/lisp/emulation/viper-init.el +++ b/lisp/emulation/viper-init.el @@ -279,7 +279,7 @@ The minor mode viper-vi-diehard-minor-mode is in effect when viper-expert-level is 1 or 2 or when viper-want-emacs-keys-in-vi is t. The minor mode viper-insert-diehard-minor-mode is in effect when viper-expert-level is 1 or 2 or if viper-want-emacs-keys-in-insert is t. -Use `M-x viper-set-expert-level' to change this.") +Use `\\[viper-set-expert-level]' to change this.") ;; Max expert level supported by Viper. This is NOT a user option. ;; It is here to make it hard for the user from resetting it. |