[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: can't do `make-frame' with emacs 22.1 under Leopard
From: |
YAMAMOTO Mitsuharu |
Subject: |
Re: can't do `make-frame' with emacs 22.1 under Leopard |
Date: |
Mon, 07 Jan 2008 18:10:31 +0900 |
User-agent: |
Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (Shijō) APEL/10.6 Emacs/23.0.50 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) |
>>>>> On Sat, 29 Dec 2007 20:12:11 -0600, Scott Heftler <sheft@mac.com> said:
> Why can't I `make-frame' with emacs 22.1 under Leopard? The error
> must lie in `make-terminal-frame', which says:
> error: "Not running on a Macintosh screen; cannot make a new
> Macintosh frame"
This is due to the following part in the implementation of
`make-terminal-frame' in frame.c:
#ifdef MAC_OS
if (sf->output_method != output_mac)
error ("Not running on a Macintosh screen; cannot make a new Macintosh
frame");
#else
It was added in 1999 and seems to be intended for Mac OS 8 and 9.
I've changed the above condition to #ifdef MAC_OS8, so the bug will be
fixed in Emacs 22.2.
YAMAMOTO Mitsuharu
mituharu@math.s.chiba-u.ac.jp
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: can't do `make-frame' with emacs 22.1 under Leopard,
YAMAMOTO Mitsuharu <=