aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-01 06:47:29 +0000
committerRichard M. Stallman1997-05-01 06:47:29 +0000
commit888eb98e2fa5bed7793f53877feb72fabc415be4 (patch)
tree95f5150fbf8b068ffaa2feca906272eb843ee63d
parenta90424180970b85585acafbd3e6873c314d9ee0f (diff)
downloademacs-888eb98e2fa5bed7793f53877feb72fabc415be4.tar.gz
emacs-888eb98e2fa5bed7793f53877feb72fabc415be4.zip
(make-syntax-table): Doc fix.
-rw-r--r--lisp/subr.el6
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]+\"."
887 887
888(defun make-syntax-table (&optional oldtable) 888(defun make-syntax-table (&optional oldtable)
889 "Return a new syntax table. 889 "Return a new syntax table.
890It inherits all letters and control characters from the standard 890If OLDTABLE is non-nil, copy OLDTABLE.
891syntax table; other characters are copied from the standard syntax table." 891Otherwise, create a syntax table which inherits
892all letters and control characters from the standard syntax table;
893other characters are copied from the standard syntax table."
892 (if oldtable 894 (if oldtable
893 (copy-syntax-table oldtable) 895 (copy-syntax-table oldtable)
894 (let ((table (copy-syntax-table)) 896 (let ((table (copy-syntax-table))