emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 03de82f: ; Fix previous commit


From: Mark Oteiza
Subject: [Emacs-diffs] master 03de82f: ; Fix previous commit
Date: Sun, 22 Jan 2017 15:19:40 +0000 (UTC)

branch: master
commit 03de82fe7ca09ab40fbcae394d4fcdfe3374496e
Author: Mark Oteiza <address@hidden>
Commit: Mark Oteiza <address@hidden>

    ; Fix previous commit
    
    * lisp/play/dunnet.el (dun-drop): Nix assignment of nonexistent binding.
---
 lisp/play/dunnet.el |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el
index 981b846..ed5b4c6 100644
--- a/lisp/play/dunnet.el
+++ b/lisp/play/dunnet.el
@@ -267,7 +267,7 @@ on your head.")
       (dun-mprincl "You can't drop anything while on the bus.")
   (let (objnum)
     (when (setq objnum (dun-objnum-from-args-std obj))
-      (if (not (setq ptr (member objnum dun-inventory)))
+      (if (not (member objnum dun-inventory))
          (dun-mprincl "You don't have that.")
        (progn
          (dun-remove-obj-from-inven objnum)



reply via email to

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