ttn pushed a commit to branch ttn-gnugo
in repository elpa.
commit 5a0c873abd0c96b6a3f9dc1bbd43f1a562173e96
Author: Thien-Thi Nguyen <[email protected]>
Date: Sat Feb 15 12:02:53 2014 +0100
[gnugo int] Zonk unused local var.
* packages/gnugo/gnugo.el (gnugo-command): ...here, named ‘last-message’.
---
packages/gnugo/ChangeLog | 6 ++++++
packages/gnugo/gnugo.el | 3 +--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/packages/gnugo/ChangeLog b/packages/gnugo/ChangeLog
index eebc819..2f365de 100644
--- a/packages/gnugo/ChangeLog
+++ b/packages/gnugo/ChangeLog
@@ -1,3 +1,9 @@
+2014-02-15 Thien-Thi Nguyen <[email protected]>
+
+ [gnugo int] Zonk unused local var.
+
+ * gnugo.el (gnugo-command): ...here, named ‘last-message’.
+
2014-02-14 Thien-Thi Nguyen <[email protected]>
[gnugo] Use ‘user-error’.
diff --git a/packages/gnugo/gnugo.el b/packages/gnugo/gnugo.el
index e2dbd21..684a282 100644
--- a/packages/gnugo/gnugo.el
+++ b/packages/gnugo/gnugo.el
@@ -1572,8 +1572,7 @@ NOTE: At this time, GTP command handling specification is
still
(let* ((split (split-string command))
(cmd (intern (car split)))
(spec (get cmd :gnugo-gtp-command-spec))
- (full (plist-get spec :full))
- (last-message nil))
+ (full (plist-get spec :full)))
(if full
(funcall full (cdr split))
(message "Doing %s ..." command)