aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorAdrian Robert2008-07-15 18:15:18 +0000
committerAdrian Robert2008-07-15 18:15:18 +0000
commitedfda78355c5528eee489fa8a7f9c73bf8e734f2 (patch)
tree78d2414d9791e1efc17ec9b35b438ae35602340a /src/dispextern.h
parent1391cd548782097e34d7856ec4f20ca90bdf2c26 (diff)
downloademacs-edfda78355c5528eee489fa8a7f9c73bf8e734f2.tar.gz
emacs-edfda78355c5528eee489fa8a7f9c73bf8e734f2.zip
merging Emacs.app (NeXTstep port)
Diffstat (limited to 'src/dispextern.h')
-rw-r--r--src/dispextern.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index e6064476d0c..180820d4b80 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -69,6 +69,14 @@ typedef Pixmap XImagePtr;
69typedef XImagePtr XImagePtr_or_DC; 69typedef XImagePtr XImagePtr_or_DC;
70#endif 70#endif
71 71
72#ifdef HAVE_NS
73#include "nsgui.h"
74/* following typedef needed to accomodate the MSDOS port, believe it or not */
75typedef struct ns_display_info Display_Info;
76typedef Pixmap XImagePtr;
77typedef XImagePtr XImagePtr_or_DC;
78#endif
79
72#ifndef NativeRectangle 80#ifndef NativeRectangle
73#define NativeRectangle int 81#define NativeRectangle int
74#endif 82#endif
@@ -1563,6 +1571,13 @@ struct face
1563 /* If non-zero, use overstrike (to simulate bold-face). */ 1571 /* If non-zero, use overstrike (to simulate bold-face). */
1564 unsigned overstrike : 1; 1572 unsigned overstrike : 1;
1565 1573
1574/* NOTE: this is not used yet, but eventually this impl should be done
1575 similarly to overstrike */
1576#ifdef HAVE_NS
1577 /* If non-zero, use geometric rotation (to simulate italic). */
1578 unsigned synth_ital : 1;
1579#endif
1580
1566 /* Next and previous face in hash collision list of face cache. */ 1581 /* Next and previous face in hash collision list of face cache. */
1567 struct face *next, *prev; 1582 struct face *next, *prev;
1568 1583