At 04:13 PM 2/15/99 -0500, Paul Stodghill wrote:
> Ah... right. I still do not understand completely. Can CYGWIN
actually
> display _both_ native win32 and X frames in the same instance of X emacs?
The answer is,
> A. Yes.
See my other mail. There is no unified event loop currently so you cannot
do this:
At least, in theory it's supposed to. I can't get gnuclient to
work to
test it
out though....
I think that things are even more confused than this. Consider the
following
code in make-faces-bold in faces.el,
(when (featurep 'x)
(frob-face-property face 'font 'x-make-font-bold locale))
(when (featurep 'mswindows)
(frob-face-property face 'font 'mswindows-make-font-bold locale))
When running under CYGWIN+X, doesn't the second "when" expression just
clobber
the results of evaluating the first? This is the behavior that I'm
seeing.
There are several other places in faces.el where stuff like this is done...
Shouldn't the properties be changed in the appropriate locale?
andy