comparison src/buffer.c @ 51853:fd71e1aaa838

(fix_overlays_before): Fix typo in last commit.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 09 Jul 2003 19:05:41 +0000
parents c5036e7cc93b
children 6713947da36f
comparison
equal deleted inserted replaced
51852:dc926bfd8248 51853:fd71e1aaa838
3429 3429
3430 /* If we don't find such an overlay, 3430 /* If we don't find such an overlay,
3431 or the found one ends before PREV, 3431 or the found one ends before PREV,
3432 or the found one is the last one in the list, 3432 or the found one is the last one in the list,
3433 we don't have to fix anything. */ 3433 we don't have to fix anything. */
3434 if (tail || end < prev || !tail->next) 3434 if (!tail || end < prev || !tail->next)
3435 return; 3435 return;
3436 3436
3437 right_pair = parent; 3437 right_pair = parent;
3438 parent = tail; 3438 parent = tail;
3439 tail = tail->next; 3439 tail = tail->next;