# HG changeset patch # User Jim Blandy # Date 741860030 0 # Node ID b9bdcf862c67bb0ebb3391cce4219e69bf1ccba9 # Parent cdab67a10461c1539d01e28cfe16b888e65ed991 * textprop.c (validate_interval_range): Don't increment both *begin and *end if they point to the same thing. (validate_plist): Call QUIT while scanning LIST. diff -r cdab67a10461 -r b9bdcf862c67 src/textprop.c --- a/src/textprop.c Mon Jul 05 07:57:34 1993 +0000 +++ b/src/textprop.c Mon Jul 05 08:13:50 1993 +0000 @@ -141,7 +141,8 @@ /* User-level Positions in strings start with 0, but the interval code always wants positions starting with 1. */ XFASTINT (*begin) += 1; - XFASTINT (*end) += 1; + if (begin != end) + XFASTINT (*end) += 1; i = s->intervals; if (s->size == 0) @@ -173,7 +174,10 @@ register int i; register Lisp_Object tail; for (i = 0, tail = list; !NILP (tail); i++) - tail = Fcdr (tail); + { + tail = Fcdr (tail); + QUIT; + } if (i & 1) error ("Odd length text property list"); return list;