emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/gnugo 4b24b56 142/357: [gnugo frolic int] Don't go thr


From: Stefan Monnier
Subject: [elpa] externals/gnugo 4b24b56 142/357: [gnugo frolic int] Don't go through ‘gnugo-frolic-quit’ for refresh.
Date: Sun, 29 Nov 2020 14:51:08 -0500 (EST)

branch: externals/gnugo
commit 4b24b56e03b638c50dbb56a993316e78e6a492c0
Author: Thien-Thi Nguyen <ttn@gnu.org>
Commit: Thien-Thi Nguyen <ttn@gnu.org>

    [gnugo frolic int] Don't go through ‘gnugo-frolic-quit’ for refresh.
    
    * packages/gnugo/gnugo.el (gnugo-frolic-in-the-leaves):
    If ‘gnugo-frolic-parent-buffer’ is already set, don't clobber it.
    (gnugo--swiz): Don't call ‘gnugo-frolic-quit’.
    (gnugo-frolic-prune-branch): Likewise.
---
 gnugo.el | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnugo.el b/gnugo.el
index 78c39d0..6cc635e 100644
--- a/gnugo.el
+++ b/gnugo.el
@@ -773,7 +773,8 @@ are dimmed.  Type \\[describe-mode] in that buffer for 
details."
   (interactive)
   (let* ((buf (get-buffer-create (concat (gnugo-get :diamond)
                                          "*GNUGO Frolic*")))
-         (from (current-buffer))
+         (from (or gnugo-frolic-parent-buffer
+                   (current-buffer)))
          ;; todo: use defface once we finally succumb to ‘customize’
          (dimmed-node-face (list :inherit 'default
                                  :foreground "gray50"))
@@ -971,8 +972,6 @@ are dimmed.  Type \\[describe-mode] in that buffer for 
details."
                     (mod (+ direction n) width))))
           (was (copy-sequence ends))
           (new-bidx (funcall flit bidx)))
-     (gnugo-frolic-quit)
-     (assert (eq 'gnugo-board-mode major-mode))
      (loop for bx below width
            do (aset ends (funcall flit bx)
                     (aref was bx)))
@@ -1033,7 +1032,6 @@ This fails if the monkey is on the current branch
      (gnugo--set-tree-ends tree (apply 'vector new)))
    (when (< a bidx)
      (aset monkey 1 (decf bidx)))
-   (gnugo-frolic-quit)
    (gnugo-frolic-in-the-leaves)
    (when line
      (goto-char (point-min))



reply via email to

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