diff options
author | Glenn Morris <rgm@gnu.org> | 2018-06-18 12:14:24 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-06-18 12:14:24 -0700 |
commit | 72b20dd7a8d073fe98abbd559f6d0e9e8dc674c1 (patch) | |
tree | 2b018126074573adb3eb80be5750a841a436990b /lisp/info.el | |
parent | 0f7c3bae445dc161835d9f1fea1461996aa1f6c6 (diff) | |
parent | a933ebef57cde64c90fd6d92ae34eabd705f100a (diff) | |
download | emacs-72b20dd7a8d073fe98abbd559f6d0e9e8dc674c1.tar.gz |
Merge from origin/emacs-26
a933ebe Improve commentary in info.el
94e84a9 ; Further wording fix in tramp.texi
a5a0b11 Fix wording in tramp.texi
2933242 * doc/misc/tramp.texi (Remote shell setup): Fix typo.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el index bbce55f6216..c45b7f9cb3e 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -30,6 +30,15 @@ ;; This distinction is to support indexing of computer programming ;; language terms that may contain ":" but not ": ". +;; The commands in this file should start either with "Info-" or with +;; "info-". The capitalized version is for commands that are bound to +;; keys, and therefore are unlikely to be invoked by name via "M-x"; +;; the lower-case version is for commands invoked by name. This +;; arrangement makes completion of "info-" commands work better, +;; because the "Info-" commands (of which there are a lot) don't get +;; in the way. Please adhere to this convention when you add commands +;; here. + ;;; Code: (eval-when-compile (require 'cl-lib)) |