diff options
| author | Joakim Verona | 2012-03-25 22:04:52 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-03-25 22:04:52 +0200 |
| commit | 75da28a3845b9dfa4e730cfa19c14edc52cbb222 (patch) | |
| tree | b04519bffcb21264cbe3ce8af13df7186548667f /lisp/simple.el | |
| parent | b827329a89291ed68dd017c53976be7ce5ed3b22 (diff) | |
| parent | f514f6f0e3f8bbeb5212d0337e5bda5a9a4eaeb5 (diff) | |
| download | emacs-75da28a3845b9dfa4e730cfa19c14edc52cbb222.tar.gz emacs-75da28a3845b9dfa4e730cfa19c14edc52cbb222.zip | |
upstream
Diffstat (limited to 'lisp/simple.el')
| -rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 936037f5caa..8b04534455d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3688,7 +3688,8 @@ If ARG is zero, move to the beginning of the current line." | |||
| 3688 | (assq prop buffer-invisibility-spec)))))) | 3688 | (assq prop buffer-invisibility-spec)))))) |
| 3689 | (skip-chars-forward "^\n") | 3689 | (skip-chars-forward "^\n") |
| 3690 | (if (get-text-property (point) 'invisible) | 3690 | (if (get-text-property (point) 'invisible) |
| 3691 | (goto-char (next-single-property-change (point) 'invisible)) | 3691 | (goto-char (or (next-single-property-change (point) 'invisible) |
| 3692 | (point-max))) | ||
| 3692 | (goto-char (next-overlay-change (point)))) | 3693 | (goto-char (next-overlay-change (point)))) |
| 3693 | (end-of-line))) | 3694 | (end-of-line))) |
| 3694 | 3695 | ||