comparison src/nsgui.h @ 101357:64413c753b62

Remove '23' comments that indicated code added during update from emacs-20 -> emacs-23.
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Thu, 22 Jan 2009 13:55:44 +0000
parents e038c1a8307c
children 963474e6d53e
comparison
equal deleted inserted replaced
101356:a7544aafa1e1 101357:64413c753b62
58 int width; 58 int width;
59 int ascent; 59 int ascent;
60 int descent; 60 int descent;
61 } XCharStruct; 61 } XCharStruct;
62 62
63 /* 23: Fake tructure from Xlib.h to represent two-byte characters. */ 63 /* Fake tructure from Xlib.h to represent two-byte characters. */
64 #ifndef __OBJC__ 64 #ifndef __OBJC__
65 typedef unsigned short unichar; 65 typedef unsigned short unichar;
66 #endif 66 #endif
67 typedef unichar XChar2b; 67 typedef unichar XChar2b;
68 68
119 119
120 /* Xism */ 120 /* Xism */
121 typedef Lisp_Object XrmDatabase; 121 typedef Lisp_Object XrmDatabase;
122 122
123 123
124 /* 23: some sort of attempt to normalize rectangle handling.. seems a bit much 124 /* some sort of attempt to normalize rectangle handling.. seems a bit much
125 for what is accomplished */ 125 for what is accomplished */
126 typedef struct { 126 typedef struct {
127 int x, y; 127 int x, y;
128 unsigned width, height; 128 unsigned width, height;
129 } XRectangle; 129 } XRectangle;
130 130