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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/lisp.el [lexbind]
Date: Sat, 04 Sep 2004 05:43:13 -0400

Index: emacs/lisp/emacs-lisp/lisp.el
diff -c emacs/lisp/emacs-lisp/lisp.el:1.46.4.7 
emacs/lisp/emacs-lisp/lisp.el:1.46.4.8
*** emacs/lisp/emacs-lisp/lisp.el:1.46.4.7      Tue Jul  6 09:31:51 2004
--- emacs/lisp/emacs-lisp/lisp.el       Sat Sep  4 09:28:13 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]