aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-06-18 12:14:24 -0700
committerGlenn Morris2018-06-18 12:14:24 -0700
commit72b20dd7a8d073fe98abbd559f6d0e9e8dc674c1 (patch)
tree2b018126074573adb3eb80be5750a841a436990b
parent0f7c3bae445dc161835d9f1fea1461996aa1f6c6 (diff)
parenta933ebef57cde64c90fd6d92ae34eabd705f100a (diff)
downloademacs-72b20dd7a8d073fe98abbd559f6d0e9e8dc674c1.tar.gz
emacs-72b20dd7a8d073fe98abbd559f6d0e9e8dc674c1.zip
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.
-rw-r--r--doc/misc/tramp.texi7
-rw-r--r--lisp/info.el9
2 files changed, 13 insertions, 3 deletions
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 83585038a8f..420fef7164c 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -1931,7 +1931,7 @@ Another possibility is to check the environment variable
1931to the version of the parent Emacs process, @xref{Interactive Shell, , 1931to the version of the parent Emacs process, @xref{Interactive Shell, ,
1932, emacs}. @value{tramp} adds its own package version to this string, 1932, emacs}. @value{tramp} adds its own package version to this string,
1933which could be used for further tests in an inferior shell. The 1933which could be used for further tests in an inferior shell. The
1934string of that environment variable loooks always like 1934string of that environment variable looks always like
1935 1935
1936@example 1936@example
1937@group 1937@group
@@ -3811,8 +3811,9 @@ Abbreviation list expansion can be used to reduce typing long file names:
3811The reduced typing: @kbd{C-x C-f /xy @key{RET}}. 3811The reduced typing: @kbd{C-x C-f /xy @key{RET}}.
3812 3812
3813@strong{Note} that file name cannot be edited here because the 3813@strong{Note} that file name cannot be edited here because the
3814environment variables are not expanded during editing in the 3814abbreviations are not expanded during editing in the minibuffer.
3815minibuffer. 3815Furthermore, the abbreviation is not expanded during @key{TAB}
3816completion.
3816 3817
3817@item 3818@item
3818Define own abbreviation (2): 3819Define own abbreviation (2):
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 @@
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))