diff options
| author | John Wiegley | 2016-02-15 14:09:12 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-02-15 14:09:12 -0800 |
| commit | a644fa367504c4587c1b9e5fc20b7af79e6e99a0 (patch) | |
| tree | 4647c040ba7c430db2d102e39180950ffd90e49f /src/syntax.c | |
| parent | 8c4e041bdbc07a159305b41e1bcb64f1d301b99f (diff) | |
| parent | f5d6b9bb5b307067547f0b26c74e9f538464bfc6 (diff) | |
| download | emacs-a644fa367504c4587c1b9e5fc20b7af79e6e99a0.tar.gz emacs-a644fa367504c4587c1b9e5fc20b7af79e6e99a0.zip | |
Merge from origin/emacs-25
f5d6b9b Revert "Support integer image rotation and respect EXIF rotations"
afe7d1f Revert "Document EXIF image rotation"
c6f377c Document OS X LANG default
eb4a18c Set locale when run from OS X GUI
456c0a3 make-docfile cleanup for I/O, etc.
25ec995 Memory-management cleanup in make-docfile
02d925e Kevin Gallagher has new email address
4ef153b Improve doc strings of 'forward/backward-word-strictly'
3ad05a0 Describe Makefile test targets in test/README
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c index db5a99d4cdf..249d0d58bc6 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1536,9 +1536,15 @@ DEFUN ("forward-word", Fforward_word, Sforward_word, 0, 1, "^p", | |||
| 1536 | doc: /* Move point forward ARG words (backward if ARG is negative). | 1536 | doc: /* Move point forward ARG words (backward if ARG is negative). |
| 1537 | If ARG is omitted or nil, move point forward one word. | 1537 | If ARG is omitted or nil, move point forward one word. |
| 1538 | Normally returns t. | 1538 | Normally returns t. |
| 1539 | If an edge of the buffer or a field boundary is reached, point is left there | 1539 | If an edge of the buffer or a field boundary is reached, point is |
| 1540 | and the function returns nil. Field boundaries are not noticed if | 1540 | left there and the function returns nil. Field boundaries are not |
| 1541 | `inhibit-field-text-motion' is non-nil. */) | 1541 | noticed if `inhibit-field-text-motion' is non-nil. |
| 1542 | |||
| 1543 | The word boundaries are normally determined by the buffer's syntax | ||
| 1544 | table, but `find-word-boundary-function-table', such as set up | ||
| 1545 | by `subword-mode', can change that. If a Lisp program needs to | ||
| 1546 | move by words determined strictly by the syntax table, it should | ||
| 1547 | use `forward-word-strictly' instead. */) | ||
| 1542 | (Lisp_Object arg) | 1548 | (Lisp_Object arg) |
| 1543 | { | 1549 | { |
| 1544 | Lisp_Object tmp; | 1550 | Lisp_Object tmp; |