aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/control.texi2
-rw-r--r--doc/lispref/display.texi2
-rw-r--r--doc/lispref/nonascii.texi11
-rw-r--r--doc/lispref/strings.texi2
4 files changed, 9 insertions, 8 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 63dc2f866af..d4520ebdee5 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -525,7 +525,7 @@ core pattern can have the following forms:
525 525
526@table @code 526@table @code
527 527
528@item _ 528@item _@r{ (underscore)}
529Matches any @var{expval}. 529Matches any @var{expval}.
530This is also known as @dfn{don't care} or @dfn{wildcard}. 530This is also known as @dfn{don't care} or @dfn{wildcard}.
531 531
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 653b249a407..b98c2f8fa93 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -5057,7 +5057,7 @@ which are evaluated at display time. This could be unsafe in certain
5057situations, e.g., when the display specification was generated by some 5057situations, e.g., when the display specification was generated by some
5058external program/agent. Wrapping a display specification in a list 5058external program/agent. Wrapping a display specification in a list
5059that begins with the special symbol @code{disable-eval}, as in 5059that begins with the special symbol @code{disable-eval}, as in
5060@w{@code{('disable-eval @var{spec})}}, will disable evaluation of any 5060@w{@code{(disable-eval @var{spec})}}, will disable evaluation of any
5061Lisp in @var{spec}, while still supporting all the other display 5061Lisp in @var{spec}, while still supporting all the other display
5062property features. 5062property features.
5063 5063
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi
index d7d25dc36af..6dc23637a79 100644
--- a/doc/lispref/nonascii.texi
+++ b/doc/lispref/nonascii.texi
@@ -280,11 +280,12 @@ to the codepoints @code{#x3FFF80} through @code{#x3FFFFF}, inclusive
280 280
281@defun string-to-unibyte string 281@defun string-to-unibyte string
282This function returns a unibyte string containing the same sequence of 282This function returns a unibyte string containing the same sequence of
283characters as @var{string}. It signals an error if @var{string} 283characters as @var{string}. If @var{string} is a unibyte string, it
284contains a non-@acronym{ASCII} character. If @var{string} is a 284is returned unchanged. Otherwise, @acronym{ASCII} characters and
285unibyte string, it is returned unchanged. Use this function for 285characters in the @code{eight-bit} charset are converted to their
286@var{string} arguments that contain only @acronym{ASCII} and eight-bit 286corresponding byte values. Use this function for @var{string}
287characters. 287arguments that contain only @acronym{ASCII} and eight-bit characters;
288the function signals an error if any other characters are encountered.
288@end defun 289@end defun
289 290
290@defun byte-to-string byte 291@defun byte-to-string byte
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 413e17750e9..78f1344cada 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -1348,7 +1348,7 @@ given width, if specified.
1348This flag converts the substituted text to upper case (@pxref{Case 1348This flag converts the substituted text to upper case (@pxref{Case
1349Conversion}). 1349Conversion}).
1350 1350
1351@item _ 1351@item _@r{ (underscore)}
1352This flag converts the substituted text to lower case (@pxref{Case 1352This flag converts the substituted text to lower case (@pxref{Case
1353Conversion}). 1353Conversion}).
1354@end table 1354@end table