diff options
author | Richard M. Stallman <rms@gnu.org> | 2000-01-20 18:07:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2000-01-20 18:07:38 +0000 |
commit | caccdcbb25c7fd120997c8c7d619a6ab8f072beb (patch) | |
tree | b4e803c290e3fd8af9f0e884b720f5337ef2ff59 /lispref/searching.texi | |
parent | 8cc956425fac572883e29eb263f6f17b890824ce (diff) | |
download | emacs-caccdcbb25c7fd120997c8c7d619a6ab8f072beb.tar.gz |
*** empty log message ***
Diffstat (limited to 'lispref/searching.texi')
-rw-r--r-- | lispref/searching.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lispref/searching.texi b/lispref/searching.texi index 9a58dbaa628..054985e4e5b 100644 --- a/lispref/searching.texi +++ b/lispref/searching.texi @@ -405,7 +405,7 @@ in Emacs 21, and what they mean: @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 @@ matches anything that has word syntax.) @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.) |