diff options
| author | YAMAMOTO Mitsuharu | 2008-01-07 08:15:56 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2008-01-07 08:15:56 +0000 |
| commit | f7dcf73a4fe2774638c73dff1a82fe7975e1e0e7 (patch) | |
| tree | 3ba82368bd4bb7da13d6b4b4b797384b79dcfc86 | |
| parent | 6d344054d1e875131062646e7f3e081ef0ba092f (diff) | |
| download | emacs-f7dcf73a4fe2774638c73dff1a82fe7975e1e0e7.tar.gz emacs-f7dcf73a4fe2774638c73dff1a82fe7975e1e0e7.zip | |
(Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of #ifdef MAC_OS.
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 7ba3e9928ab..a2b2148a21f 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -582,7 +582,7 @@ Note that changing the size of one terminal frame automatically affects all. */ | |||
| 582 | abort (); | 582 | abort (); |
| 583 | #else /* not MSDOS */ | 583 | #else /* not MSDOS */ |
| 584 | 584 | ||
| 585 | #ifdef MAC_OS | 585 | #ifdef MAC_OS8 |
| 586 | if (sf->output_method != output_mac) | 586 | if (sf->output_method != output_mac) |
| 587 | error ("Not running on a Macintosh screen; cannot make a new Macintosh frame"); | 587 | error ("Not running on a Macintosh screen; cannot make a new Macintosh frame"); |
| 588 | #else | 588 | #else |