aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2018-08-10 11:28:40 -0700
committerGlenn Morris2018-08-10 11:28:40 -0700
commitcaa4d9c4e7205cc62a9f414903e965494a703763 (patch)
treee2c7d913de302f0c5c1c497fe1e76d9f133fe0cb /doc
parent243b68f73ff7cbb4d89a3f4a15a1cd38cfc14fae (diff)
parent5afbf62674e741b06c01216fe37a5439e9d42307 (diff)
downloademacs-caa4d9c4e7205cc62a9f414903e965494a703763.tar.gz
emacs-caa4d9c4e7205cc62a9f414903e965494a703763.zip
Merge from origin/emacs-26
5afbf62 Fix emacsclient check for term.el buffer (Bug#21041) 5132a58 Improve documentation of 'set-fontset-font' cd90325 Improve documentation of M-? 155a885 Reinterpret Esperanto characters in iso-transl as iso-8859-3. a0ef733 Fix Flyspell mode when several languages are mixed in a buffer
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/maintaining.texi11
-rw-r--r--doc/lispref/display.texi14
2 files changed, 17 insertions, 8 deletions
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index b31cacf998a..5c3017a3883 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -1987,9 +1987,14 @@ Restart one of the last 2 commands above, from the current location of point.
1987 1987
1988@kindex M-? 1988@kindex M-?
1989@findex xref-find-references 1989@findex xref-find-references
1990 @kbd{M-?} finds all the references for the identifier at point. If 1990 @kbd{M-?} finds all the references for the identifier at point,
1991there's no identifier at point, or when invoked with a prefix 1991prompting for the identifier as needed, with completion. Depending on
1992argument, the command prompts for the identifier, with completion. It 1992the current backend (@pxref{Xref}), the command may prompt even if it
1993finds a valid identifier at point. When invoked with a prefix
1994argument, it always prompts for the identifier. (If you want it to
1995prompt always, customize the value of the variable
1996@code{xref-prompt-for-identifier} to @code{t}; or set it to @code{nil}
1997to prompt only if there's no usable identifier at point.) The command
1993then presents the @file{*xref*} buffer with all the references to the 1998then presents the @file{*xref*} buffer with all the references to the
1994identifier, showing the file name and the line where the identifier is 1999identifier, showing the file name and the line where the identifier is
1995referenced. The XREF mode commands are available in this buffer, see 2000referenced. The XREF mode commands are available in this buffer, see
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index fef51881977..ea9a305ae2a 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -3498,11 +3498,15 @@ cons @code{(@var{from} . @var{to})}, where @var{from} and @var{to} are
3498character codepoints. In that case, use @var{font-spec} for all the 3498character codepoints. In that case, use @var{font-spec} for all the
3499characters in the range @var{from} and @var{to} (inclusive). 3499characters in the range @var{from} and @var{to} (inclusive).
3500 3500
3501@var{character} may be a charset. In that case, use 3501@var{character} may be a charset (@pxref{Character Sets}). In that
3502@var{font-spec} for all character in the charsets. 3502case, use @var{font-spec} for all the characters in the charset.
3503 3503
3504@var{character} may be a script name. In that case, use 3504@var{character} may be a script name (@pxref{Character Properties}).
3505@var{font-spec} for all character in the charsets. 3505In that case, use @var{font-spec} for all the characters belonging to
3506the script.
3507
3508@var{character} may be @code{nil}, which means to use @var{font-spec}
3509for any character which no font-spec is specified.
3506 3510
3507@var{font-spec} may be a font-spec object created by the function 3511@var{font-spec} may be a font-spec object created by the function
3508@code{font-spec} (@pxref{Low-Level Font}). 3512@code{font-spec} (@pxref{Low-Level Font}).
@@ -3512,7 +3516,7 @@ where @var{family} is a family name of a font (possibly including a
3512foundry name at the head), @var{registry} is a registry name of a font 3516foundry name at the head), @var{registry} is a registry name of a font
3513(possibly including an encoding name at the tail). 3517(possibly including an encoding name at the tail).
3514 3518
3515@var{font-spec} may be a font name string. 3519@var{font-spec} may be a font name, a string.
3516 3520
3517@var{font-spec} may be @code{nil}, which explicitly specifies that 3521@var{font-spec} may be @code{nil}, which explicitly specifies that
3518there's no font for the specified @var{character}. This is useful, 3522there's no font for the specified @var{character}. This is useful,