At 04:56 PM 4/30/98 +0200, Hrvoje Niksic wrote:
Andy Piper <andyp(a)parallax.co.uk> writes:
> (defun gamegrid-display-type ()
> (cond ((and gamegrid-use-glyphs
> - (eq window-system 'x)
> + window-system
Could this *please* be `(console-on-window-system-p)'? Thanks...
Index: games/games/gamegrid.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-packages/games/games/gamegrid.el,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 gamegrid.el
--- games/games/gamegrid.el 1998/01/14 06:30:31 1.1.1.1
+++ games/games/gamegrid.el 1998/04/30 23:18:16
@@ -248,11 +248,11 @@
(defun gamegrid-display-type ()
(cond ((and gamegrid-use-glyphs
- (eq window-system 'x)
+ (console-on-window-system-p)
(featurep 'xpm))
'glyph)
((and gamegrid-use-color
- (eq window-system 'x)
+ (console-on-window-system-p)
(gamegrid-color-display-p))
'color-x)
((eq window-system 'x)