diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/maintaining.texi | 11 | ||||
| -rw-r--r-- | doc/lispref/display.texi | 14 |
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, |
| 1991 | there's no identifier at point, or when invoked with a prefix | 1991 | prompting for the identifier as needed, with completion. Depending on |
| 1992 | argument, the command prompts for the identifier, with completion. It | 1992 | the current backend (@pxref{Xref}), the command may prompt even if it |
| 1993 | finds a valid identifier at point. When invoked with a prefix | ||
| 1994 | argument, it always prompts for the identifier. (If you want it to | ||
| 1995 | prompt always, customize the value of the variable | ||
| 1996 | @code{xref-prompt-for-identifier} to @code{t}; or set it to @code{nil} | ||
| 1997 | to prompt only if there's no usable identifier at point.) The command | ||
| 1993 | then presents the @file{*xref*} buffer with all the references to the | 1998 | then presents the @file{*xref*} buffer with all the references to the |
| 1994 | identifier, showing the file name and the line where the identifier is | 1999 | identifier, showing the file name and the line where the identifier is |
| 1995 | referenced. The XREF mode commands are available in this buffer, see | 2000 | referenced. 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 | |||
| 3498 | character codepoints. In that case, use @var{font-spec} for all the | 3498 | character codepoints. In that case, use @var{font-spec} for all the |
| 3499 | characters in the range @var{from} and @var{to} (inclusive). | 3499 | characters 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. | 3502 | case, 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. | 3505 | In that case, use @var{font-spec} for all the characters belonging to |
| 3506 | the script. | ||
| 3507 | |||
| 3508 | @var{character} may be @code{nil}, which means to use @var{font-spec} | ||
| 3509 | for 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 | |||
| 3512 | foundry name at the head), @var{registry} is a registry name of a font | 3516 | foundry 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 |
| 3518 | there's no font for the specified @var{character}. This is useful, | 3522 | there's no font for the specified @var{character}. This is useful, |