From: Thien-Thi Nguyen Date: Fri, 9 Jun 2006 14:23:49 +0000 (+0000) Subject: (pong-init-buffer): Fill buffer with spaces instead of ^A. X-Git-Tag: emacs-pretest-22.0.90~2009 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f47adf18e19227481c02c796ef564b7265d5cf48;p=emacs.git (pong-init-buffer): Fill buffer with spaces instead of ^A. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5fd90145462..2b3d6d5413c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-06-09 Micha,Ak(Bl Cadilhac + * play/pong.el (pong-init-buffer): + Fill buffer with spaces instead of ^A. + * textmodes/ispell.el (ispell-kill-ispell): If ispell has been launched asynchronously, delete its process instead of being cool. (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 @@ (gamegrid-init-buffer pong-width (+ 2 pong-height) - 1) + ?\s) (let ((buffer-read-only nil)) (loop for y from 0 to (1- pong-height) do