emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/dispextern.h,v


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/dispextern.h,v
Date: Tue, 13 Jun 2006 22:45:21 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Kim F. Storm <kfstorm>  06/06/13 22:45:21

Index: dispextern.h
===================================================================
RCS file: /cvsroot/emacs/emacs/src/dispextern.h,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -b -r1.218 -r1.219
--- dispextern.h        28 May 2006 20:19:17 -0000      1.218
+++ dispextern.h        13 Jun 2006 22:45:21 -0000      1.219
@@ -1819,6 +1819,8 @@
   NUM_IT_METHODS
 };
 
+#define IT_STACK_SIZE 4
+
 struct it
 {
   /* The window in which we iterate over current_buffer (or a string).  */
@@ -1930,10 +1932,12 @@
     int stop_charpos;
     int face_id;
     Lisp_Object string;
+    int image_id;
     struct display_pos pos;
     int end_charpos;
     int string_nchars;
     enum glyph_row_area area;
+    enum it_method method;
     unsigned multibyte_p : 1;
     unsigned string_from_display_prop_p : 1;
     unsigned display_ellipsis_p : 1;
@@ -1942,7 +1946,7 @@
     short voffset;
     Lisp_Object font_height;
   }
-  stack[2];
+  stack[IT_STACK_SIZE];
 
   /* Stack pointer.  */
   int sp;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]