diff 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
line wrap: on
line diff
--- a/src/lisp.h	Wed Jul 09 14:29:11 2003 +0000
+++ b/src/lisp.h	Wed Jul 09 14:46:06 2003 +0000
@@ -1225,6 +1225,7 @@
     int type : 16;	/* = Lisp_Misc_Overlay */
     unsigned gcmarkbit : 1;
     int spacer : 15;
+    struct Lisp_Overlay *next;
     Lisp_Object start, end, plist;
   };