emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/xdisp.c


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Fri, 25 Feb 2005 16:50:21 -0500

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.984 emacs/src/xdisp.c:1.985
*** emacs/src/xdisp.c:1.984     Tue Feb 22 11:04:18 2005
--- emacs/src/xdisp.c   Fri Feb 25 21:50:21 2005
***************
*** 2538,2544 ****
       after-string.  */
    init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
  
!   for (i = 0; i < it->n_overlay_strings; ++i)
      {
        const char *s = SDATA (it->overlay_strings[i]);
        const char *e = s + SBYTES (it->overlay_strings[i]);
--- 2538,2547 ----
       after-string.  */
    init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
  
!   /* This only scans the current chunk -- it should scan all chunks.
!      However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
!      to 16 in 22.1 to make this a lesser problem.  */
!   for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
      {
        const char *s = SDATA (it->overlay_strings[i]);
        const char *e = s + SBYTES (it->overlay_strings[i]);




reply via email to

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