bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#40169: Fix drawing the horizontal line


From: Asher Gordon
Subject: bug#40169: Fix drawing the horizontal line
Date: Sun, 22 Mar 2020 23:26:16 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Whoops! I accidentally broke drawing the horizontal line when someone
wins horizontally. Here is the patch below:
--- gomoku.el~  2020-03-21 19:13:36.284656730 -0400
+++ gomoku.el   2020-03-22 23:11:48.313804581 -0400
@@ -1114,7 +1114,7 @@
        (setq square1 (+ square1 depl))
        (cond
          ((= dy 0)                     ; Horizontal
-          (gomoku-move-right)
+          (forward-char 1)
           (insert-char ?- (1- gomoku-square-width) t)
           (delete-region (point) (progn
                                    (skip-chars-forward " \t")
And as before, I've also attached the fixed patch so you only have to
apply one patch.

Asher

-- 
One picture is worth 128K words.
                               --------
I prefer to send and receive mail encrypted. Please send me your
public key, and if you do not have my public key, please let me
know. Thanks.

GPG fingerprint: 38F3 975C D173 4037 B397  8095 D4C9 C4FC 5460 8E68

Attachment: gomoku.patch
Description: Fixed patch

Attachment: signature.asc
Description: PGP signature


reply via email to

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