]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-syntax-table): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 1 May 1997 06:47:29 +0000 (06:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 1 May 1997 06:47:29 +0000 (06:47 +0000)
lisp/subr.el

index 70fea7691b63143ada60ab499542b1ea5e4d2422..ccd08a52cd0fda1b5e6cb288ad081cb6abb8d4f8 100644 (file)
@@ -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))