aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-10-15 23:10:11 +0000
committerKarl Heuer1997-10-15 23:10:11 +0000
commit8d8c434d4f0919e602f31be513ca811acd7e446e (patch)
tree0edda32cfad4f7f6e97d8c13cd278930c7907f91
parent3ba3fa750fb39e8bc8378038d1ad7627231b621b (diff)
downloademacs-8d8c434d4f0919e602f31be513ca811acd7e446e.tar.gz
emacs-8d8c434d4f0919e602f31be513ca811acd7e446e.zip
(end-of-visible-line): After skipping some invisible chars.
don't go forward a character, just to end of line.
-rw-r--r--lisp/simple.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index f57abdb9eff..a33f0111d8f 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1279,7 +1279,6 @@ If ARG is zero, move to the beginning of the current line."
1279 (if (get-text-property (point) 'invisible) 1279 (if (get-text-property (point) 'invisible)
1280 (goto-char (next-single-property-change (point) 'invisible)) 1280 (goto-char (next-single-property-change (point) 'invisible))
1281 (goto-char (next-overlay-change (point)))) 1281 (goto-char (next-overlay-change (point))))
1282 (forward-char 1)
1283 (end-of-line))) 1282 (end-of-line)))
1284 1283
1285;;;; Window system cut and paste hooks. 1284;;;; Window system cut and paste hooks.