diff options
| author | Eli Zaretskii | 2018-06-14 16:54:08 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-06-14 16:54:08 +0300 |
| commit | a933ebef57cde64c90fd6d92ae34eabd705f100a (patch) | |
| tree | 777f3fbbdc1e1953cfc3b33ac234118a340092dd | |
| parent | 94e84a92fee4f7015ceedc0e39c767d72facb0e2 (diff) | |
| download | emacs-a933ebef57cde64c90fd6d92ae34eabd705f100a.tar.gz emacs-a933ebef57cde64c90fd6d92ae34eabd705f100a.zip | |
Improve commentary in info.el
* lisp/info.el: Explain in commentary why some commands start with
"info-" and others with "Info-". See also
http://lists.gnu.org/archive/html/emacs-devel/2017-11/msg00482.html.
| -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 8743b449976..30df4bfe5c1 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -30,6 +30,15 @@ | |||
| 30 | ;; This distinction is to support indexing of computer programming | 30 | ;; This distinction is to support indexing of computer programming |
| 31 | ;; language terms that may contain ":" but not ": ". | 31 | ;; language terms that may contain ":" but not ": ". |
| 32 | 32 | ||
| 33 | ;; The commands in this file should start either with "Info-" or with | ||
| 34 | ;; "info-". The capitalized version is for commands that are bound to | ||
| 35 | ;; keys, and therefore are unlikely to be invoked by name via "M-x"; | ||
| 36 | ;; the lower-case version is for commands invoked by name. This | ||
| 37 | ;; arrangement makes completion of "info-" commands work better, | ||
| 38 | ;; because the "Info-" commands (of which there are a lot) don't get | ||
| 39 | ;; in the way. Please adhere to this convention when you add commands | ||
| 40 | ;; here. | ||
| 41 | |||
| 33 | ;;; Code: | 42 | ;;; Code: |
| 34 | 43 | ||
| 35 | (eval-when-compile (require 'cl-lib)) | 44 | (eval-when-compile (require 'cl-lib)) |