[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/play/pong.el
From: |
Francesco Potortì |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/play/pong.el |
Date: |
Fri, 13 Sep 2002 09:28:12 -0400 |
Index: emacs/lisp/play/pong.el
diff -c emacs/lisp/play/pong.el:1.9 emacs/lisp/play/pong.el:1.10
*** emacs/lisp/play/pong.el:1.9 Wed Feb 6 06:34:54 2002
--- emacs/lisp/play/pong.el Wed Feb 6 07:06:04 2002
***************
*** 156,162 ****
(t ?\+))
((color-x color-x)
(mono-x grid-x))
! (((glyph color-x) [0.5 0.5 0.5])
(color-tty pong-border-color))))
(defconst pong-blank 0)
--- 156,166 ----
(t ?\+))
((color-x color-x)
(mono-x grid-x))
! ;; The colors used to be [0.5 0.5 0.5], but that produces a black
! ;; color on 8-color tty's, which would make the border invisible.
! ;; 0.51 produces white on such tty's, and at the same time has
! ;; almost no effect on X and similar displays.
! (((glyph color-x) [0.51 0.51 0.51])
(color-tty pong-border-color))))
(defconst pong-blank 0)
- [Emacs-diffs] Changes to emacs/lisp/play/pong.el,
Francesco Potortì <=