diff options
| author | Glenn Morris | 2018-02-02 07:50:22 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-02-02 07:50:22 -0800 |
| commit | a893a4db20e9a6cf6a03855d40d9b9dfd9c49139 (patch) | |
| tree | dc27e36bb663ee054a33d99e5647c0d152e853d8 /doc/lispref | |
| parent | 8dd2edc70fe77e86d0b4a9928e7f5bcd2543947a (diff) | |
| parent | 6f495abd0d65075714f92b0eb7f637d6f540edfa (diff) | |
| download | emacs-a893a4db20e9a6cf6a03855d40d9b9dfd9c49139.tar.gz emacs-a893a4db20e9a6cf6a03855d40d9b9dfd9c49139.zip | |
Merge from origin/emacs-26
6f495ab (origin/emacs-26) Another round of manual fixups
59344c4 * doc/lispref/customize.texi (Custom Themes): Clarify .el pre...
6386efc * doc/emacs/entering.texi (Entering Emacs): Another wording fix.
e21f018 * doc/lispref/functions.texi (Inline Functions): Fix typo (Bu...
1c2fb04 * lisp/imenu.el (imenu-generic-expression): Rephrase doc (Bug...
b90e91c Fix last change of @key markup
f180075 * doc/emacs/entering.texi (Entering Emacs): Fix markup.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/customize.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/display.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi index 6c7ca260abc..7fea507fd03 100644 --- a/doc/lispref/customize.texi +++ b/doc/lispref/customize.texi | |||
| @@ -1432,7 +1432,9 @@ where the list entries have the same meanings as in | |||
| 1432 | would be evaluated when loading the theme, but that is bad form. | 1432 | would be evaluated when loading the theme, but that is bad form. |
| 1433 | To protect against loading themes containing malicious code, Emacs | 1433 | To protect against loading themes containing malicious code, Emacs |
| 1434 | displays the source file and asks for confirmation from the user | 1434 | displays the source file and asks for confirmation from the user |
| 1435 | before loading any non-built-in theme for the first time. | 1435 | before loading any non-built-in theme for the first time. As |
| 1436 | such, themes are not ordinarily byte-compiled, and source files | ||
| 1437 | always take precedence when Emacs is looking for a theme to load. | ||
| 1436 | 1438 | ||
| 1437 | The following functions are useful for programmatically enabling and | 1439 | The following functions are useful for programmatically enabling and |
| 1438 | disabling themes: | 1440 | disabling themes: |
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index bd1f671225c..fbf943a08c7 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -4599,7 +4599,7 @@ first character in the group of consecutive characters that have the | |||
| 4599 | same @code{display} property. The space width is the pixel width of | 4599 | same @code{display} property. The space width is the pixel width of |
| 4600 | that character, multiplied by @var{factor}. (On text-mode terminals, | 4600 | that character, multiplied by @var{factor}. (On text-mode terminals, |
| 4601 | the ``pixel width'' of a character is usually 1, but it could be more | 4601 | the ``pixel width'' of a character is usually 1, but it could be more |
| 4602 | for @key{TAB}s and double-width CJK characters.) | 4602 | for TABs and double-width CJK characters.) |
| 4603 | 4603 | ||
| 4604 | @item :align-to @var{hpos} | 4604 | @item :align-to @var{hpos} |
| 4605 | Specifies that the space should be wide enough to reach @var{hpos}. | 4605 | Specifies that the space should be wide enough to reach @var{hpos}. |
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index c3e5dc0eb5b..9090956d837 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -2098,7 +2098,7 @@ to verify that using @code{defun} actually has performance problems. | |||
| 2098 | After an inline function is defined, its inline expansion can be | 2098 | After an inline function is defined, its inline expansion can be |
| 2099 | performed later on in the same file, just like macros. | 2099 | performed later on in the same file, just like macros. |
| 2100 | 2100 | ||
| 2101 | It's possible to use @code{defsubst} to define a macro to expand | 2101 | It's possible to use @code{defmacro} to define a macro to expand |
| 2102 | into the same code that an inline function would execute | 2102 | into the same code that an inline function would execute |
| 2103 | (@pxref{Macros}). But the macro would be limited to direct use in | 2103 | (@pxref{Macros}). But the macro would be limited to direct use in |
| 2104 | expressions---a macro cannot be called with @code{apply}, | 2104 | expressions---a macro cannot be called with @code{apply}, |