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: Tue, 04 Feb 2003 05:41:11 -0500

Index: emacs/lisp/simple.el
diff -c emacs/lisp/simple.el:1.590 emacs/lisp/simple.el:1.591
*** emacs/lisp/simple.el:1.590  Mon Jan 27 16:44:48 2003
--- emacs/lisp/simple.el        Tue Feb  4 05:41:10 2003
***************
*** 368,374 ****
    "Move point to the first non-whitespace character on this line."
    (interactive)
    (beginning-of-line 1)
!   (skip-chars-forward " \t"))
  
  (defun fixup-whitespace ()
    "Fixup white space between objects around point.
--- 368,375 ----
    "Move point to the first non-whitespace character on this line."
    (interactive)
    (beginning-of-line 1)
!   (let ((limit (line-end-position)))
!     (skip-syntax-forward " " limit)))
  
  (defun fixup-whitespace ()
    "Fixup white space between objects around point.




reply via email to

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