* lisp/eshell/esh-mode.el: (eshell/clear): Use (window-size) as the
number of newlines to be inserted. This fixes the issue where
eshell/clear wouldn't work if the prompt was not at the bottom of the
window, and the output wasn't too long.
(interactive)
(if scrollback
(eshell/clear-scrollback)
- (let ((number-newlines (count-lines (window-start) (point))))
- (insert (make-string number-newlines ?\n))
- (eshell-send-input))))
+ (insert (make-string (window-size) ?\n))
+ (eshell-send-input)))
(defun eshell/clear-scrollback ()
"Clear the scrollback content of the eshell window."