1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-05 08:53:45 +00:00

(Syntax Table Functions): Use \s syntax in examples.

This commit is contained in:
Richard M. Stallman 2003-07-22 15:21:10 +00:00
parent 58c962913e
commit 2b01bb5552

View File

@ -433,7 +433,7 @@ signaled if @var{char} is not a character.
@exdent @r{Examples:}
;; @r{Put the space character in class whitespace.}
(modify-syntax-entry ?\ " ")
(modify-syntax-entry ?\s " ")
@result{} nil
@end group
@ -479,7 +479,7 @@ character, @samp{)}.
@example
@group
(string (char-syntax ?\ ))
(string (char-syntax ?\s))
@result{} " "
@end group