aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorStefan Kangas2022-06-05 06:30:25 +0200
committerStefan Kangas2022-06-05 06:30:25 +0200
commitd46e94f23fbbd522f2a017444b29f9f18203b4bc (patch)
tree606ec60566bda5eebbdea6bc5aee835fcafdef2f /doc/lispref
parentddfb91c0a7e46f0332caf82237cabc736ddfd276 (diff)
parent1b8719835a200a2be17da226e82030f691caba80 (diff)
downloademacs-d46e94f23fbbd522f2a017444b29f9f18203b4bc.tar.gz
emacs-d46e94f23fbbd522f2a017444b29f9f18203b4bc.zip
Merge from origin/emacs-28
1b8719835a Update to Org 9.5.4 92c5faafd7 Clarify documentation of 'string-to-unibyte' 2848512654 ; * lisp/files.el (find-file): Avoid too short lines in do... 672f9f787f Improve keystrokes in doc strings in some find-file functions ef5651cc77 Fix segfaults when starting on 80x26 TTY frames bfa647972f ; Fix doc string of 'delete-selection-repeat-replace-region' a95d46e00f Make it explicit that a couple of _s in lispref are unders... 5c74c25123 Remove from FAQ the MS-Windows info about BDF fonts edb48646f2 Fix Display Property manual example
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