diff options
| author | Paul Eggert | 2011-04-13 22:04:02 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 22:04:02 -0700 |
| commit | a7ca3326c4740ed3ed118b794d35d235de49f346 (patch) | |
| tree | 5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/syntax.c | |
| parent | e87b6180b08c60a256dd8557945321ce2354a3a9 (diff) | |
| download | emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip | |
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c index 518ba3bba15..ce203948b04 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1341,7 +1341,7 @@ scan_words (register EMACS_INT from, register EMACS_INT count) | |||
| 1341 | return from; | 1341 | return from; |
| 1342 | } | 1342 | } |
| 1343 | 1343 | ||
| 1344 | DEFUE ("forward-word", Fforward_word, Sforward_word, 0, 1, "^p", | 1344 | DEFUN ("forward-word", Fforward_word, Sforward_word, 0, 1, "^p", |
| 1345 | doc: /* Move point forward ARG words (backward if ARG is negative). | 1345 | doc: /* Move point forward ARG words (backward if ARG is negative). |
| 1346 | Normally returns t. | 1346 | Normally returns t. |
| 1347 | If an edge of the buffer or a field boundary is reached, point is left there | 1347 | If an edge of the buffer or a field boundary is reached, point is left there |
| @@ -1370,7 +1370,7 @@ and the function returns nil. Field boundaries are not noticed if | |||
| 1370 | return val == orig_val ? Qt : Qnil; | 1370 | return val == orig_val ? Qt : Qnil; |
| 1371 | } | 1371 | } |
| 1372 | 1372 | ||
| 1373 | DEFUE ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, | 1373 | DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, |
| 1374 | doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. | 1374 | doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. |
| 1375 | STRING is like the inside of a `[...]' in a regular expression | 1375 | STRING is like the inside of a `[...]' in a regular expression |
| 1376 | except that `]' is never special and `\\' quotes `^', `-' or `\\' | 1376 | except that `]' is never special and `\\' quotes `^', `-' or `\\' |
| @@ -1385,7 +1385,7 @@ Returns the distance traveled, either zero or positive. */) | |||
| 1385 | return skip_chars (1, string, lim, 1); | 1385 | return skip_chars (1, string, lim, 1); |
| 1386 | } | 1386 | } |
| 1387 | 1387 | ||
| 1388 | DEFUE ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0, | 1388 | DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0, |
| 1389 | doc: /* Move point backward, stopping after a char not in STRING, or at pos LIM. | 1389 | doc: /* Move point backward, stopping after a char not in STRING, or at pos LIM. |
| 1390 | See `skip-chars-forward' for details. | 1390 | See `skip-chars-forward' for details. |
| 1391 | Returns the distance traveled, either zero or negative. */) | 1391 | Returns the distance traveled, either zero or negative. */) |