diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-01 06:47:29 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-01 06:47:29 +0000 |
commit | 8cfe68f6bba4a717a1b555d726c58bafa14a18cf (patch) | |
tree | 438a45f9c263bb9a2b4117195f3a6564047e1e15 /lisp | |
parent | 0546366f64d6aea1b2f6cb6ce212c7b27f772ddc (diff) | |
download | emacs-8cfe68f6bba4a717a1b555d726c58bafa14a18cf.tar.gz |
(make-syntax-table): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/subr.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 70fea7691b6..ccd08a52cd0 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -887,8 +887,10 @@ If SEPARATORS is absent, it defaults to \"[ \\f\\t\\n\\r\\v]+\"." (defun make-syntax-table (&optional oldtable) "Return a new syntax table. -It inherits all letters and control characters from the standard -syntax table; other characters are copied from the standard syntax table." +If OLDTABLE is non-nil, copy OLDTABLE. +Otherwise, create a syntax table which inherits +all letters and control characters from the standard syntax table; +other characters are copied from the standard syntax table." (if oldtable (copy-syntax-table oldtable) (let ((table (copy-syntax-table)) |