aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2006-06-09 14:23:49 +0000
committerThien-Thi Nguyen2006-06-09 14:23:49 +0000
commitf47adf18e19227481c02c796ef564b7265d5cf48 (patch)
tree72e39e095cd9e40702c32c9940c50dea22c0997f
parent5e7c994bd5054df87d1b6298618c11388c610800 (diff)
downloademacs-f47adf18e19227481c02c796ef564b7265d5cf48.tar.gz
emacs-f47adf18e19227481c02c796ef564b7265d5cf48.zip
(pong-init-buffer): Fill buffer with spaces instead of ^A.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/play/pong.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5fd90145462..2b3d6d5413c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12006-06-09 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> 12006-06-09 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org>
2 2
3 * play/pong.el (pong-init-buffer):
4 Fill buffer with spaces instead of ^A.
5
3 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been 6 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
4 launched asynchronously, delete its process instead of being cool. 7 launched asynchronously, delete its process instead of being cool.
5 (ispell-async-processp): Check for `delete-process' existence 8 (ispell-async-processp): Check for `delete-process' existence
diff --git a/lisp/play/pong.el b/lisp/play/pong.el
index d73d789d0d3..4efa8c2a639 100644
--- a/lisp/play/pong.el
+++ b/lisp/play/pong.el
@@ -244,7 +244,7 @@
244 244
245 (gamegrid-init-buffer pong-width 245 (gamegrid-init-buffer pong-width
246 (+ 2 pong-height) 246 (+ 2 pong-height)
247 1) 247 ?\s)
248 248
249 (let ((buffer-read-only nil)) 249 (let ((buffer-read-only nil))
250 (loop for y from 0 to (1- pong-height) do 250 (loop for y from 0 to (1- pong-height) do