diff options
| author | Glenn Morris | 2019-08-10 08:44:31 -0700 |
|---|---|---|
| committer | Glenn Morris | 2019-08-10 08:44:31 -0700 |
| commit | 7343474b79332b05abc1d51ae2bbc3e2ba43deeb (patch) | |
| tree | c584ffae74bddab1b6f8d89035dc0e5af06178aa /lisp/play | |
| parent | 6bebfa77a9ae8c63b29f159387600c097ea32eaa (diff) | |
| parent | 0860ac0e9db15ee0f094df7f6b0bbd5961bb08ac (diff) | |
| download | emacs-7343474b79332b05abc1d51ae2bbc3e2ba43deeb.tar.gz emacs-7343474b79332b05abc1d51ae2bbc3e2ba43deeb.zip | |
Merge from origin/emacs-26
0860ac0 (origin/emacs-26) Improve documentation of features that use ...
fae1ff6 Fix docstrings in pong
82a2894 Improve doc strings of 'append-to-buffer' and friends
cb0403d Fix octave-mode ElDoc support
691790b Avoid Groff hanging on MS-Windows when invoked by "M-x man"
Diffstat (limited to 'lisp/play')
| -rw-r--r-- | lisp/play/pong.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/play/pong.el b/lisp/play/pong.el index 759dbb404c6..e41db612878 100644 --- a/lisp/play/pong.el +++ b/lisp/play/pong.el | |||
| @@ -262,7 +262,7 @@ | |||
| 262 | 262 | ||
| 263 | 263 | ||
| 264 | (defun pong-move-left () | 264 | (defun pong-move-left () |
| 265 | "Move bat 2 up. | 265 | "Move bat 1 up. |
| 266 | This is called left for historical reasons, since in some pong | 266 | This is called left for historical reasons, since in some pong |
| 267 | implementations you move with left/right paddle." | 267 | implementations you move with left/right paddle." |
| 268 | (interactive) | 268 | (interactive) |
| @@ -274,7 +274,7 @@ implementations you move with left/right paddle." | |||
| 274 | 274 | ||
| 275 | 275 | ||
| 276 | (defun pong-move-right () | 276 | (defun pong-move-right () |
| 277 | "Move bat 2 up." | 277 | "Move bat 1 down." |
| 278 | (interactive) | 278 | (interactive) |
| 279 | (if (< (+ pong-bat-player1 pong-bat-width) (1- pong-height)) | 279 | (if (< (+ pong-bat-player1 pong-bat-width) (1- pong-height)) |
| 280 | (and | 280 | (and |