aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2006-05-07 08:05:19 +0000
committerYAMAMOTO Mitsuharu2006-05-07 08:05:19 +0000
commitb1b415de01912a8bae8560538ed611a82578582d (patch)
treea57c478840409e4288124c973a9ac0440a87d330 /src
parent000447ac013c15d5127af86d523bd9cedb9c3de1 (diff)
downloademacs-b1b415de01912a8bae8560538ed611a82578582d.tar.gz
emacs-b1b415de01912a8bae8560538ed611a82578582d.zip
(USE_MAC_FONT_PANEL): Define to 1 if USE_ATSUI is set
and build is done on Mac OS X 10.2 and later.
Diffstat (limited to 'src')
-rw-r--r--src/macgui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/macgui.h b/src/macgui.h
index 579ae2b7663..f7005600d43 100644
--- a/src/macgui.h
+++ b/src/macgui.h
@@ -103,6 +103,13 @@ typedef unsigned long Time;
103#endif 103#endif
104#endif 104#endif
105 105
106/* Whether to use the standard Font Panel floating dialog. */
107#ifndef USE_MAC_FONT_PANEL
108#if USE_ATSUI && MAC_OS_X_VERSION_MAX_ALLOWED >= 1020
109#define USE_MAC_FONT_PANEL 1
110#endif
111#endif
112
106typedef WindowPtr Window; 113typedef WindowPtr Window;
107typedef GWorldPtr Pixmap; 114typedef GWorldPtr Pixmap;
108 115