From 1a6b0846b5fbf08aa4288ae9e47c59cfca30459f Mon Sep 17 00:00:00 2001 From: Mark Oteiza Date: Fri, 8 Jan 2016 12:19:09 -0500 Subject: [PATCH] * lisp/play/dunnet.el (dun-fix-screen): Avoid `end-of-buffer`. --- lisp/play/dunnet.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el index 941f98ebb69..8ed0bb3bbb4 100644 --- a/lisp/play/dunnet.el +++ b/lisp/play/dunnet.el @@ -1203,7 +1203,7 @@ for a moment, then straighten yourself up. (interactive) (forward-line (- 0 (- (window-height) 2 ))) (set-window-start (selected-window) (point)) - (end-of-buffer)) + (goto-char (point-max))) ;;; Insert something into the buffer, followed by newline. -- 2.39.2