emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master a0b743d: ; Fix my previous commit


From: Stefan Kangas
Subject: master a0b743d: ; Fix my previous commit
Date: Sat, 30 Jan 2021 23:50:52 -0500 (EST)

branch: master
commit a0b743da19a5020436f9a46453b1817045483c98
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    ; Fix my previous commit
    
    * lisp/play/5x5.el (5x5-solver-output): Prefer defvar-local.
    * lisp/play/gamegrid.el (gamegrid-display-table): Provide default
    value.
---
 lisp/play/5x5.el      | 2 +-
 lisp/play/gamegrid.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/play/5x5.el b/lisp/play/5x5.el
index c89188c..05e61df 100644
--- a/lisp/play/5x5.el
+++ b/lisp/play/5x5.el
@@ -141,7 +141,7 @@
     map)
   "Local keymap for the 5x5 game.")
 
-(5x5-defvar-local 5x5-solver-output nil
+(defvar-local 5x5-solver-output nil
   "List that is the output of an arithmetic solver.
 
 This list L is such that
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el
index 34787d9..8b64dfd 100644
--- a/lisp/play/gamegrid.el
+++ b/lisp/play/gamegrid.el
@@ -50,7 +50,7 @@
 
 (defvar-local gamegrid-display-mode nil)
 
-(defvar-local gamegrid-display-table)
+(defvar-local gamegrid-display-table nil)
 
 (defvar-local gamegrid-face-table nil)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]