summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-11 17:14:08 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-11 17:14:08 +0000
commita1bf74a7309068576ea57d869014b0e39cbae1a3 (patch)
tree295a8cb9bf6e8d8ad0320eed0954ee7d03ba42a1
parent8f62bc64dfa7572168a3f98eae0a7f304634c761 (diff)
downloademacs-a1bf74a7309068576ea57d869014b0e39cbae1a3.tar.gz
(make-syntax-table): Use nil for "inherit".
-rw-r--r--lisp/subr.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index fdf189c6851..38c8376e8e5 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -782,19 +782,19 @@ syntax table; other characters are copied from the standard syntax table."
i)
(setq i 0)
(while (<= i 31)
- (aset table i 13)
+ (aset table i nil)
(setq i (1+ i)))
(setq i ?A)
(while (<= i ?Z)
- (aset table i 13)
+ (aset table i nil)
(setq i (1+ i)))
(setq i ?a)
(while (<= i ?z)
- (aset table i 13)
+ (aset table i nil)
(setq i (1+ i)))
(setq i 128)
(while (<= i 255)
- (aset table i 13)
+ (aset table i nil)
(setq i (1+ i)))
table)))