Path: utzoo!attcan!uunet!husc6!bloom-beacon!tut.cis.ohio-state.edu!cs.utexas.edu!ut-sally!ghostwheel!milano!titan!janssen
From: janssen@titan.SW.MCC.COM (Bill Janssen)
Newsgroups: comp.emacs
Subject: Re: Am I using SunView or X-windows?
Summary: use of window-system
Message-ID: <845@titan.SW.MCC.COM>
Date: 30 Jun 88 01:40:43 GMT
References: <8806220303.AA24247@unixb.CEL.FMC.COM> <5724@columbia.edu> <932@xyzzy.UUCP>
Organization: MCC Software Technology
Lines: 15

Probably easier just to "cond" on terminal-type.  Anyway:

In article <932@xyzzy.UUCP>, meissner@xyzzy.UUCP (Michael Meissner) writes:
>     (if window-system
>       (setq terminal-x t))

This would be more safely written as

	(if (eq window-system 'x)
	  (setq terminal-x t))

as the 18.51 patches for NeWS set the window-system var to 'news (or is
it 'NeWS?)

Bill