aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-06-01 17:56:45 +0200
committerLars Ingebrigtsen2022-06-01 17:56:45 +0200
commita95d46e00febf3ef4a7fd016e06d5c426e81f1e2 (patch)
tree56fc1face621d0e86bd81d8691968f562d34a1af
parent5c74c2512378e1903ddc569987e2462108cc0acf (diff)
downloademacs-a95d46e00febf3ef4a7fd016e06d5c426e81f1e2.tar.gz
emacs-a95d46e00febf3ef4a7fd016e06d5c426e81f1e2.zip
Make it explicit that a couple of _s in lispref are underscores
* doc/lispref/strings.texi (Custom Format Strings): * doc/lispref/control.texi (pcase Macro): Make it explicit that it's an underscore (bug#55742).
-rw-r--r--doc/lispref/control.texi2
-rw-r--r--doc/lispref/strings.texi2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index ecf616fc2be..34653d70565 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/strings.texi b/doc/lispref/strings.texi
index 3d8db985e9c..742ab76244d 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -1345,7 +1345,7 @@ given width, if specified.
1345This flag converts the substituted text to upper case (@pxref{Case 1345This flag converts the substituted text to upper case (@pxref{Case
1346Conversion}). 1346Conversion}).
1347 1347
1348@item _ 1348@item _@r{ (underscore)}
1349This flag converts the substituted text to lower case (@pxref{Case 1349This flag converts the substituted text to lower case (@pxref{Case
1350Conversion}). 1350Conversion}).
1351@end table 1351@end table