From: Karl Heuer Date: Wed, 14 Feb 1996 04:09:31 +0000 (+0000) Subject: (hanoi): Don't show line and column numbers. X-Git-Tag: emacs-19.34~1296 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=09d13f4cba2214c89b792dcf4acc114e346d1cc7;p=emacs.git (hanoi): Don't show line and column numbers. --- diff --git a/lisp/play/hanoi.el b/lisp/play/hanoi.el index 17184afeebd..12a700d458e 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)