From d698b12a3bb314807f0ee7c5868194e232faa360 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Sun, 15 Jan 2023 20:10:37 -0900 Subject: [PATCH] 2048: Make entry function interactive (whoops) --- lisp/2048.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/2048.el b/lisp/2048.el index 7fcdfe2..2482ed1 100644 --- a/lisp/2048.el +++ b/lisp/2048.el @@ -371,7 +371,8 @@ individually." (setq font-lock-defaults '(2048-highlights))) (defun play-2048 () - "Play 2048 in Emacs!" + "Play 2048 in Emacs!" + (interactive) (switch-to-buffer (get-buffer-create "*2048*")) (2048-mode))