changeset 27373:a6d5729aef1d

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Thu, 20 Jan 2000 18:07:38 +0000
parents 79d08dbee5fd
children 0f5edee5242b
files lispref/searching.texi
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/searching.texi	Thu Jan 20 06:02:13 2000 +0000
+++ b/lispref/searching.texi	Thu Jan 20 18:07:38 2000 +0000
@@ -405,7 +405,7 @@
 
 @table @samp
 @item [:ascii:]
-This matches any ASCII (unibyte) character.
+This matches any @sc{ascii} (unibyte) character.
 @item [:alnum:]
 This matches any letter or digit.  (At present, for multibyte
 characters, it matches anything that has word syntax.)
@@ -415,21 +415,21 @@
 @item [:blank:]
 This matches space and tab only.
 @item [:cntrl:]
-This matches any ASCII control character.
+This matches any @sc{ascii} control character.
 @item [:digit:]
 This matches @samp{0} through @samp{9}.  Thus, @samp{[-+[:digit:]]}
 matches any digit, as well as @samp{+} and @samp{-}.
 @item [:graph:]
-This matches graphic characters---everything except ASCII control characters,
+This matches graphic characters---everything except @sc{ascii} control characters,
 space, and DEL.
 @item [:lower:]
 This matches any lower-case letter, as determined by
 the current case table (@pxref{Case Tables}).
 @item [:nonascii:]
-This matches any non-ASCII (multibyte) character.
+This matches any non-@sc{ascii} (multibyte) character.
 @item [:print:]
-This matches printing characters---everything except ASCII control
-characters and DEL.
+This matches printing characters---everything except @sc{ascii} control
+characters and the delete character.
 @item [:punct:]
 This matches any punctuation character.  (At present, for multibyte
 characters, it matches anything that has non-word syntax.)