diff options
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/bubbles.el | 10 | ||||
-rw-r--r-- | lisp/play/gomoku.el | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el index 5ca792db310..1e06f1ba9de 100644 --- a/lisp/play/bubbles.el +++ b/lisp/play/bubbles.el @@ -101,31 +101,31 @@ and a shift mode." :group 'bubbles) (defun bubbles-set-game-easy () - "Set game theme to ‘easy’." + "Set game theme to `easy'." (interactive) (setq bubbles-game-theme 'easy) (bubbles)) (defun bubbles-set-game-medium () - "Set game theme to ‘medium’." + "Set game theme to `medium'." (interactive) (setq bubbles-game-theme 'medium) (bubbles)) (defun bubbles-set-game-difficult () - "Set game theme to ‘difficult’." + "Set game theme to `difficult'." (interactive) (setq bubbles-game-theme 'difficult) (bubbles)) (defun bubbles-set-game-hard () - "Set game theme to ‘hard’." + "Set game theme to `hard'." (interactive) (setq bubbles-game-theme 'hard) (bubbles)) (defun bubbles-set-game-userdefined () - "Set game theme to ‘user-defined’." + "Set game theme to `user-defined'." (interactive) (setq bubbles-game-theme 'user-defined) (bubbles)) diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el index 702376ce86e..d2953b69895 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)) |