emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/simple.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/simple.el
Date: Sun, 23 Oct 2005 14:26:38 -0400

Index: emacs/lisp/simple.el
diff -c emacs/lisp/simple.el:1.756 emacs/lisp/simple.el:1.757
*** emacs/lisp/simple.el:1.756  Fri Oct 21 08:55:12 2005
--- emacs/lisp/simple.el        Sun Oct 23 18:26:38 2005
***************
*** 3541,3550 ****
             ;; Compute the end of the line
             ;; ignoring effectively invisible newlines.
             (save-excursion
!              (end-of-line)
               (while (and (not (eobp)) (line-move-invisible-p (point)))
                 (goto-char (next-char-property-change (point)))
!                (end-of-line))
               (point))))
  
        ;; Move to the desired column.
--- 3541,3551 ----
             ;; Compute the end of the line
             ;; ignoring effectively invisible newlines.
             (save-excursion
!              ;; Like end-of-line but ignores fields.
!              (skip-chars-forward "^\n")
               (while (and (not (eobp)) (line-move-invisible-p (point)))
                 (goto-char (next-char-property-change (point)))
!                (skip-chars-forward "^\n"))
               (point))))
  
        ;; Move to the desired column.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]