From c555d10d0feee51dfe45305d3aae60490f425447 Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Thu, 2 May 2019 10:17:04 -0400 Subject: tetris-null-map: bind "q" to `quit-window` --- lisp/play/tetris.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/play/tetris.el b/lisp/play/tetris.el index 1e0681d7ff1..a797a26d597 100644 --- a/lisp/play/tetris.el +++ b/lisp/play/tetris.el @@ -277,6 +277,7 @@ each one of its four blocks.") (defvar tetris-null-map (let ((map (make-sparse-keymap 'tetris-null-map))) (define-key map "n" 'tetris-start-game) + (define-key map "q" 'quit-window) map)) ;; ;;;;;;;;;;;;;;;; game functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -- cgit v1.2.1