comparison src/window-impl.h @ 5133:444a448b2f53

Merge branch ben-lisp-object into default branch
author Ben Wing <ben@xemacs.org>
date Sun, 07 Mar 2010 06:47:37 -0600
parents a9c41067dd88
children 308d34e9f07d
comparison
equal deleted inserted replaced
5113:b2dcf6a6d8ab 5133:444a448b2f53
82 need to be preserved, except for those that are reconstructed by from 82 need to be preserved, except for those that are reconstructed by from
83 the window configuration. */ 83 the window configuration. */
84 84
85 struct window 85 struct window
86 { 86 {
87 struct LCRECORD_HEADER header; 87 NORMAL_LISP_OBJECT_HEADER header;
88 88
89 /* The upper left corner coordinates of this window, 89 /* The upper left corner coordinates of this window,
90 as integers (pixels) relative to upper left corner of frame = 0, 0 */ 90 as integers (pixels) relative to upper left corner of frame = 0, 0 */
91 int pixel_left; 91 int pixel_left;
92 int pixel_top; 92 int pixel_top;
166 #define DESIRED_DISP 1 166 #define DESIRED_DISP 1
167 #define CMOTION_DISP 2 167 #define CMOTION_DISP 2
168 168
169 struct window_mirror 169 struct window_mirror
170 { 170 {
171 struct LCRECORD_HEADER header; 171 NORMAL_LISP_OBJECT_HEADER header;
172 172
173 /* Frame this mirror is on. */ 173 /* Frame this mirror is on. */
174 struct frame *frame; 174 struct frame *frame;
175 175
176 /* Following child (to right or down) at same level of tree */ 176 /* Following child (to right or down) at same level of tree */