Mercurial > emacs
changeset 13186:6d3d7b32c519
(make-syntax-table): Use nil for "inherit".
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 11 Oct 1995 17:14:08 +0000 |
parents | 5b1671bd3cc1 |
children | 1a4cee562d33 |
files | lisp/subr.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Wed Oct 11 17:12:59 1995 +0000 +++ b/lisp/subr.el Wed Oct 11 17:14:08 1995 +0000 @@ -782,19 +782,19 @@ 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)))