emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/lisp.el
Date: Thu, 02 Sep 2004 05:57:57 -0400

Index: emacs/lisp/emacs-lisp/lisp.el
diff -c emacs/lisp/emacs-lisp/lisp.el:1.55 emacs/lisp/emacs-lisp/lisp.el:1.56
*** emacs/lisp/emacs-lisp/lisp.el:1.55  Fri May 28 21:12:25 2004
--- emacs/lisp/emacs-lisp/lisp.el       Thu Sep  2 09:43:38 2004
***************
*** 176,182 ****
  is called as a function to find the defun's beginning."
    (interactive "p")
    (and (eq this-command 'beginning-of-defun)
!        (or (eq last-command 'beginning-of-defun) (push-mark)))
    (and (beginning-of-defun-raw arg)
         (progn (beginning-of-line) t)))
  
--- 176,183 ----
  is called as a function to find the defun's beginning."
    (interactive "p")
    (and (eq this-command 'beginning-of-defun)
!        (or inhibit-mark-movement (eq last-command 'beginning-of-defun)
!            (push-mark)))
    (and (beginning-of-defun-raw arg)
         (progn (beginning-of-line) t)))
  
***************
*** 226,232 ****
  is called as a function to find the defun's end."
    (interactive "p")
    (and (eq this-command 'end-of-defun)
!        (or (eq last-command 'end-of-defun) (push-mark)))
    (if (or (null arg) (= arg 0)) (setq arg 1))
    (if end-of-defun-function
        (if (> arg 0)
--- 227,234 ----
  is called as a function to find the defun's end."
    (interactive "p")
    (and (eq this-command 'end-of-defun)
!        (or inhibit-mark-movement (eq last-command 'end-of-defun)
!            (push-mark)))
    (if (or (null arg) (= arg 0)) (setq arg 1))
    (if end-of-defun-function
        (if (> arg 0)




reply via email to

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