aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2012-01-29 15:35:58 +0800
committerChong Yidong2012-01-29 15:35:58 +0800
commit837a390a91191e20dfe8684eee0849edc28ebc8f (patch)
treef7d5f66ccf08090543563b9ced85ad1b39258d2b
parent0f29fa41ac3b0cb7660133281039b25a8a5330c9 (diff)
downloademacs-837a390a91191e20dfe8684eee0849edc28ebc8f.tar.gz
emacs-837a390a91191e20dfe8684eee0849edc28ebc8f.zip
* doc/lispref/syntax.texi (Syntax Class Table): Tweak description of newline char syntax.
Fixes: debbugs:9619
-rw-r--r--doc/lispref/ChangeLog3
-rw-r--r--doc/lispref/syntax.texi8
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 207c0797f69..8f949eb24dd 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,8 @@
12012-01-29 Chong Yidong <cyd@gnu.org> 12012-01-29 Chong Yidong <cyd@gnu.org>
2 2
3 * syntax.texi (Syntax Class Table): Tweak description of newline
4 char syntax (Bug#9619).
5
3 * numbers.texi (Predicates on Numbers): Fix wholenump/natnump 6 * numbers.texi (Predicates on Numbers): Fix wholenump/natnump
4 description (Bug#10189). 7 description (Bug#10189).
5 8
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index dc215b1e0e6..71742e37a51 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -128,10 +128,10 @@ their meanings, and examples of their use.
128@deffn {Syntax class} @w{whitespace character} 128@deffn {Syntax class} @w{whitespace character}
129@dfn{Whitespace characters} (designated by @w{@samp{@ }} or @samp{-}) 129@dfn{Whitespace characters} (designated by @w{@samp{@ }} or @samp{-})
130separate symbols and words from each other. Typically, whitespace 130separate symbols and words from each other. Typically, whitespace
131characters have no other syntactic significance, and multiple whitespace 131characters have no other syntactic significance, and multiple
132characters are syntactically equivalent to a single one. Space, tab, 132whitespace characters are syntactically equivalent to a single one.
133newline and formfeed are classified as whitespace in almost all major 133Space, tab, and formfeed are classified as whitespace in almost all
134modes. 134major modes.
135@end deffn 135@end deffn
136 136
137@deffn {Syntax class} @w{word constituent} 137@deffn {Syntax class} @w{word constituent}