* lisp/play/dunnet.el (dun-fix-screen): Avoid end-of-buffer.

This commit is contained in:
Mark Oteiza 2016-01-08 12:19:09 -05:00
parent 8be046f453
commit 1a6b0846b5

View file

@ -1203,7 +1203,7 @@ for a moment, then straighten yourself up.
(interactive) (interactive)
(forward-line (- 0 (- (window-height) 2 ))) (forward-line (- 0 (- (window-height) 2 )))
(set-window-start (selected-window) (point)) (set-window-start (selected-window) (point))
(end-of-buffer)) (goto-char (point-max)))
;;; Insert something into the buffer, followed by newline. ;;; Insert something into the buffer, followed by newline.