comparison src/lisp.h @ 51833:a52679a2aae5

(struct Lisp_Overlay): New field `next'.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 09 Jul 2003 14:46:06 +0000
parents b4397c0420d4
children bf6232373c39
comparison
equal deleted inserted replaced
51832:69b46262cd92 51833:a52679a2aae5
1223 struct Lisp_Overlay 1223 struct Lisp_Overlay
1224 { 1224 {
1225 int type : 16; /* = Lisp_Misc_Overlay */ 1225 int type : 16; /* = Lisp_Misc_Overlay */
1226 unsigned gcmarkbit : 1; 1226 unsigned gcmarkbit : 1;
1227 int spacer : 15; 1227 int spacer : 15;
1228 struct Lisp_Overlay *next;
1228 Lisp_Object start, end, plist; 1229 Lisp_Object start, end, plist;
1229 }; 1230 };
1230 1231
1231 /* Like Lisp_Objfwd except that value lives in a slot in the 1232 /* Like Lisp_Objfwd except that value lives in a slot in the
1232 current kboard. */ 1233 current kboard. */