diff options
| -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]+\"." | |||
| 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. |
| 890 | It inherits all letters and control characters from the standard | 890 | If OLDTABLE is non-nil, copy OLDTABLE. |
| 891 | syntax table; other characters are copied from the standard syntax table." | 891 | Otherwise, create a syntax table which inherits |
| 892 | all letters and control characters from the standard syntax table; | ||
| 893 | other 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)) |