[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/intervals.c
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] Changes to emacs/src/intervals.c |
Date: |
Wed, 09 Jul 2003 10:49:10 -0400 |
Index: emacs/src/intervals.c
diff -c emacs/src/intervals.c:1.122 emacs/src/intervals.c:1.123
*** emacs/src/intervals.c:1.122 Wed May 21 12:39:49 2003
--- emacs/src/intervals.c Wed Jul 9 10:49:10 2003
***************
*** 2009,2016 ****
if (charpos > BUF_ZV (buffer) || charpos < BUF_BEGV (buffer))
abort ();
! have_overlays = (! NILP (buffer->overlays_before)
! || ! NILP (buffer->overlays_after));
/* If we have no text properties and overlays,
then we can do it quickly. */
--- 2009,2015 ----
if (charpos > BUF_ZV (buffer) || charpos < BUF_BEGV (buffer))
abort ();
! have_overlays = (buffer->overlays_before || buffer->overlays_after);
/* If we have no text properties and overlays,
then we can do it quickly. */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/intervals.c,
Stefan Monnier <=