aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPaul Eggert2015-08-21 14:08:47 -0700
committerPaul Eggert2015-08-21 14:09:47 -0700
commitc1cacb09948928287bfc32745f2a92604d3291c4 (patch)
treeffda141622df981f55d25b8171fac6691a40f47f /lisp/org
parent59f7943043fa4afb922f4553c9994e20c534fc57 (diff)
downloademacs-c1cacb09948928287bfc32745f2a92604d3291c4.tar.gz
emacs-c1cacb09948928287bfc32745f2a92604d3291c4.zip
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/org')
-rw-r--r--lisp/org/org-gnus.el2
-rw-r--r--lisp/org/org.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-gnus.el b/lisp/org/org-gnus.el
index 8b616f0a0ff..06f00a4950c 100644
--- a/lisp/org/org-gnus.el
+++ b/lisp/org/org-gnus.el
@@ -291,7 +291,7 @@ If `org-store-link' was called with a prefix arg the meaning of
291 (group (gnus-group-jump-to-group group)))) 291 (group (gnus-group-jump-to-group group))))
292 292
293(defun org-gnus-no-new-news () 293(defun org-gnus-no-new-news ()
294 "Like `M-x gnus' but doesn't check for new news." 294 "Like `\\[gnus]' but doesn't check for new news."
295 (if (not (gnus-alive-p)) (if org-gnus-no-server (gnus-no-server) (gnus)))) 295 (if (not (gnus-alive-p)) (if org-gnus-no-server (gnus-no-server) (gnus))))
296 296
297(provide 'org-gnus) 297(provide 'org-gnus)
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 0cc185c0d75..326fb96fa13 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -827,7 +827,7 @@ When nil, just use the standard three dots.
827When a string, use that string instead. 827When a string, use that string instead.
828When a face, use the standard 3 dots, but with the specified face. 828When a face, use the standard 3 dots, but with the specified face.
829The change affects only Org-mode (which will then use its own display table). 829The change affects only Org-mode (which will then use its own display table).
830Changing this requires executing `M-x org-mode RET' in a buffer to become 830Changing this requires executing `\\[org-mode]' in a buffer to become
831effective." 831effective."
832 :group 'org-startup 832 :group 'org-startup
833 :type '(choice (const :tag "Default" nil) 833 :type '(choice (const :tag "Default" nil)