diff options
| author | Glenn Morris | 2018-03-13 18:13:26 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-03-13 18:13:26 -0700 |
| commit | e0f18aa07fb900c1bb0fe25386336fd6a73c9b0d (patch) | |
| tree | 893b95bcdf8d4a0b1e105c45b1aaf1d7b5e31a32 /src | |
| parent | ae80854e9a9f8f6733870b5b5a88467867dceb6c (diff) | |
| parent | 675edecf6102a20b3482544315c654fde4b6236e (diff) | |
| download | emacs-e0f18aa07fb900c1bb0fe25386336fd6a73c9b0d.tar.gz emacs-e0f18aa07fb900c1bb0fe25386336fd6a73c9b0d.zip | |
Merge from origin/emacs-26
675edec (origin/emacs-26) Fix some allout.el aliases
b2c069a * lisp/progmodes/ada-mode.el (ada-clean-buffer-before-saving)...
2f5420c Doc fixes re obsolete items
9edf82a Replace an obsolete alias in tpu-mapper
a643792 Doc fixes re obsolete items
3060fb8 Minor changes in mule.texi
3e39897 Avoid assertion violation under visual-order-cursor-movement
e4b73ab Stop mentioning options.el in doc
05669f0 ; * lisp/minibuffer.el (completion-cycle-threshold): Fix last...
758597f * lisp/vc/vc-dir.el (vc-dir-unmark): Fix documentation.
62f0a2b * lisp/minibuffer.el (completion-cycle-threshold): Doc fix.
761845c Fix last change in Xref documentation
5186675 More changes in the Emacs manual
b1aaa72 Improve documentation of Xref
Conflicts:
lisp/w32-fns.el
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 693e273eb07..c0fdeca4847 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -22488,6 +22488,11 @@ Value is the new character position of point. */) | |||
| 22488 | new_pos += (row->reversed_p ? -dir : dir); | 22488 | new_pos += (row->reversed_p ? -dir : dir); |
| 22489 | else | 22489 | else |
| 22490 | new_pos -= (row->reversed_p ? -dir : dir); | 22490 | new_pos -= (row->reversed_p ? -dir : dir); |
| 22491 | new_pos = clip_to_bounds (BEGV, new_pos, ZV); | ||
| 22492 | /* If we didn't move, we've hit BEGV or ZV, so we | ||
| 22493 | need to signal a suitable error. */ | ||
| 22494 | if (new_pos == PT) | ||
| 22495 | break; | ||
| 22491 | } | 22496 | } |
| 22492 | else if (BUFFERP (g->object)) | 22497 | else if (BUFFERP (g->object)) |
| 22493 | new_pos = g->charpos; | 22498 | new_pos = g->charpos; |