[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/comint.el
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/comint.el |
Date: |
Fri, 08 Jul 2005 09:44:43 -0400 |
Index: emacs/lisp/comint.el
diff -c emacs/lisp/comint.el:1.326 emacs/lisp/comint.el:1.327
*** emacs/lisp/comint.el:1.326 Mon Jul 4 23:08:52 2005
--- emacs/lisp/comint.el Fri Jul 8 13:44:42 2005
***************
*** 1818,1824 ****
(= (point) (point-max)))
(save-excursion
(goto-char (point-max))
! (recenter -1)))
(select-window selected)))))
nil t))
(set-buffer current))))
--- 1818,1824 ----
(= (point) (point-max)))
(save-excursion
(goto-char (point-max))
! (recenter (- -1 scroll-margin))))
(select-window selected)))))
nil t))
(set-buffer current))))
***************
*** 1852,1858 ****
"Put the end of the buffer at the bottom of the window."
(interactive)
(goto-char (point-max))
! (recenter -1))
(defun comint-get-old-input-default ()
"Default for `comint-get-old-input'.
--- 1852,1858 ----
"Put the end of the buffer at the bottom of the window."
(interactive)
(goto-char (point-max))
! (recenter (- -1 scroll-margin)))
(defun comint-get-old-input-default ()
"Default for `comint-get-old-input'.