aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-07-22 15:21:10 +0000
committerRichard M. Stallman2003-07-22 15:21:10 +0000
commit2b01bb5552ba8f6d7027101bb1f2851756c21aee (patch)
treec5d48be0a89752b34f077701d47cdff0ca24ff12
parent58c962913ea6de58516187f964f6d9d5eee4e044 (diff)
downloademacs-2b01bb5552ba8f6d7027101bb1f2851756c21aee.tar.gz
emacs-2b01bb5552ba8f6d7027101bb1f2851756c21aee.zip
(Syntax Table Functions): Use \s syntax in examples.
-rw-r--r--lispref/syntax.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/syntax.texi b/lispref/syntax.texi
index 07aca71e94e..80d3a2f6c81 100644
--- a/lispref/syntax.texi
+++ b/lispref/syntax.texi
@@ -433,7 +433,7 @@ signaled if @var{char} is not a character.
433@exdent @r{Examples:} 433@exdent @r{Examples:}
434 434
435;; @r{Put the space character in class whitespace.} 435;; @r{Put the space character in class whitespace.}
436(modify-syntax-entry ?\ " ") 436(modify-syntax-entry ?\s " ")
437 @result{} nil 437 @result{} nil
438@end group 438@end group
439 439
@@ -479,7 +479,7 @@ character, @samp{)}.
479 479
480@example 480@example
481@group 481@group
482(string (char-syntax ?\ )) 482(string (char-syntax ?\s))
483 @result{} " " 483 @result{} " "
484@end group 484@end group
485 485