From: Karl Heuer Date: Wed, 15 Oct 1997 23:10:11 +0000 (+0000) Subject: (end-of-visible-line): After skipping some invisible chars. X-Git-Tag: emacs-20.3~3019 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8d8c434d4f0919e602f31be513ca811acd7e446e;p=emacs.git (end-of-visible-line): After skipping some invisible chars. don't go forward a character, just to end of line. --- 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." (if (get-text-property (point) 'invisible) (goto-char (next-single-property-change (point) 'invisible)) (goto-char (next-overlay-change (point)))) - (forward-char 1) (end-of-line))) ;;;; Window system cut and paste hooks.