diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c index f995b8f2cac..fdd9353bb87 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -921,11 +921,11 @@ DEFUN ("matching-paren", Fmatching_paren, Smatching_paren, 1, 1, 0, | |||
| 921 | } | 921 | } |
| 922 | 922 | ||
| 923 | DEFUN ("string-to-syntax", Fstring_to_syntax, Sstring_to_syntax, 1, 1, 0, | 923 | DEFUN ("string-to-syntax", Fstring_to_syntax, Sstring_to_syntax, 1, 1, 0, |
| 924 | doc: /* Convert a syntax specification STRING into syntax cell form. | 924 | doc: /* Convert a syntax descriptor STRING into a raw syntax descriptor. |
| 925 | STRING should be a string as it is allowed as argument of | 925 | STRING should be a string of the form allowed as argument of |
| 926 | `modify-syntax-entry'. Value is the equivalent cons cell | 926 | `modify-syntax-entry'. The return value is a raw syntax descriptor: a |
| 927 | \(CODE . MATCHING-CHAR) that can be used as value of a `syntax-table' | 927 | cons cell \(CODE . MATCHING-CHAR) which can be used, for example, as |
| 928 | text property. */) | 928 | the value of a `syntax-table' text property. */) |
| 929 | (Lisp_Object string) | 929 | (Lisp_Object string) |
| 930 | { | 930 | { |
| 931 | register const unsigned char *p; | 931 | register const unsigned char *p; |