diff options
Diffstat (limited to 'lisp/play/gomoku.el')
-rw-r--r-- | lisp/play/gomoku.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el index 8e6165fa5e4..702376ce86e 100644 --- a/lisp/play/gomoku.el +++ b/lisp/play/gomoku.el @@ -977,7 +977,7 @@ If the game is finished, this command requests for another game." (move-to-column (+ gomoku-x-offset (* gomoku-square-width (1- x))))) (defun gomoku-plot-square (square value) - "Draw 'X', 'O' or '.' on SQUARE depending on VALUE, leave point there." + "Draw ‘X’, ‘O’ or ‘.’ on SQUARE depending on VALUE, leave point there." (or (= value 1) (gomoku-goto-square square)) (let ((inhibit-read-only t)) |