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: Thu, 28 Mar 2002 13:27:23 -0500

Index: emacs/lisp/simple.el
diff -c emacs/lisp/simple.el:1.528 emacs/lisp/simple.el:1.529
*** emacs/lisp/simple.el:1.528  Tue Mar 26 01:29:01 2002
--- emacs/lisp/simple.el        Thu Mar 28 13:27:23 2002
***************
*** 2633,2639 ****
  This function works only in certain cases,
  because what we really need is for `move-to-column'
  and `current-column' to be able to ignore invisible text."
!   (move-to-column col)
  
    (when (and line-move-ignore-invisible
             (not (bolp)) (line-move-invisible (1- (point))))
--- 2633,2641 ----
  This function works only in certain cases,
  because what we really need is for `move-to-column'
  and `current-column' to be able to ignore invisible text."
!   (if (zerop col)
!       (beginning-of-line)
!     (move-to-column col))
  
    (when (and line-move-ignore-invisible
             (not (bolp)) (line-move-invisible (1- (point))))



reply via email to

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