comparison src/syntax.c @ 4141:373bff27d0d6

* syntax.c (Fmodify_syntax_entry): Doc fix.
author Jim Blandy <jimb@redhat.com>
date Sun, 18 Jul 1993 06:26:51 +0000
parents ea9d3f2cd5fa
children fb633691b4a9
comparison
equal deleted inserted replaced
4140:2738089e8383 4141:373bff27d0d6
228 228
229 /* This comment supplies the doc string for modify-syntax-entry, 229 /* This comment supplies the doc string for modify-syntax-entry,
230 for make-docfile to see. We cannot put this in the real DEFUN 230 for make-docfile to see. We cannot put this in the real DEFUN
231 due to limits in the Unix cpp. 231 due to limits in the Unix cpp.
232 232
233 DEFUN ("modify-syntax-entry", foo, bar, 0, 0, 0, 233 DEFUN ("modify-syntax-entry", foo, bar, 2, 3, 0,
234 "Set syntax for character CHAR according to string S.\n\ 234 "Set syntax for character CHAR according to string S.\n\
235 The syntax is changed only for table TABLE, which defaults to\n\ 235 The syntax is changed only for table TABLE, which defaults to\n\
236 the current buffer's syntax table.\n\ 236 the current buffer's syntax table.\n\
237 The first character of S should be one of the following:\n\ 237 The first character of S should be one of the following:\n\
238 Space or - whitespace syntax. w word constituent.\n\ 238 Space or - whitespace syntax. w word constituent.\n\
261 b means C is part of comment sequence b.\n\ 261 b means C is part of comment sequence b.\n\
262 \n\ 262 \n\
263 p means C is a prefix character for `backward-prefix-chars';\n\ 263 p means C is a prefix character for `backward-prefix-chars';\n\
264 such characters are treated as whitespace when they occur\n\ 264 such characters are treated as whitespace when they occur\n\
265 between expressions.") 265 between expressions.")
266 266 (char, s, table)
267 */ 267 */
268 268
269 DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3, 269 DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3,
270 /* I really don't know why this is interactive 270 /* I really don't know why this is interactive
271 help-form should at least be made useful whilst reading the second arg 271 help-form should at least be made useful whilst reading the second arg