diff options
| author | Richard M. Stallman | 1997-05-01 06:47:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-01 06:47:29 +0000 |
| commit | 888eb98e2fa5bed7793f53877feb72fabc415be4 (patch) | |
| tree | 95f5150fbf8b068ffaa2feca906272eb843ee63d | |
| parent | a90424180970b85585acafbd3e6873c314d9ee0f (diff) | |
| download | emacs-888eb98e2fa5bed7793f53877feb72fabc415be4.tar.gz emacs-888eb98e2fa5bed7793f53877feb72fabc415be4.zip | |
(make-syntax-table): Doc fix.
| -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)) |