diff src/text.c @ 4526:38493c0fb952

Fix accidental deletion in src/text.c.
author Stephen J. Turnbull <stephen@xemacs.org>
date Sun, 02 Nov 2008 00:12:13 +0900
parents d64f1060cd65
children 6ef8256a020a 19a72041c5ed
line wrap: on
line diff
--- a/src/text.c	Sat Nov 01 23:32:53 2008 +0900
+++ b/src/text.c	Sun Nov 02 00:12:13 2008 +0900
@@ -3018,7 +3018,7 @@
       int record = x - best_below_byte > 5000;
 
 #ifdef OLD_LOOP /* old code */
-       (best_below_byte < x)
+      while (best_below_byte < x)
 	{
 	  best_below++;
 	  INC_BYTEBPOS (buf, best_below_byte);