From 09d13f4cba2214c89b792dcf4acc114e346d1cc7 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 14 Feb 1996 04:09:31 +0000 Subject: [PATCH] (hanoi): Don't show line and column numbers. --- lisp/play/hanoi.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lisp/play/hanoi.el b/lisp/play/hanoi.el index 17184afeeb..12a700d458 100644 --- a/lisp/play/hanoi.el +++ b/lisp/play/hanoi.el @@ -149,10 +149,11 @@ (setq i (1+ i)))) (setq buffer-read-only t) (sit-for 0) - ;; - ;; do it! - ;; - (hanoi0 (1- nrings) pole-1 pole-2 pole-3) + ;; Disable display of line and column numbers, for speed. + (let ((line-number-mode nil) + (column-number-mode nil)) + ;; do it! + (hanoi0 (1- nrings) pole-1 pole-2 pole-3)) (goto-char (point-min)) (message "Done") (setq buffer-read-only t) -- 2.39.2