Hrvoje Niksic wrote:
> (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...
That breaks (FSF) Emacs compatibility. Is there an equivalent Emacs
function. Or should I define:
(defun gamegrid-window-system-p ()
(if (fboundp 'console-on-window-system-p)
(console-on-window-system-p)
window-system))
--
Glynn Clements <glynn(a)sensei.co.uk>