From f47adf18e19227481c02c796ef564b7265d5cf48 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 9 Jun 2006 14:23:49 +0000 Subject: [PATCH] (pong-init-buffer): Fill buffer with spaces instead of ^A. --- lisp/ChangeLog | 3 +++ lisp/play/pong.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 -- 2.39.5