comparison 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
comparison
equal deleted inserted replaced
4525:d64f1060cd65 4526:38493c0fb952
3016 if (x - best_below_byte < best_above_byte - x) 3016 if (x - best_below_byte < best_above_byte - x)
3017 { 3017 {
3018 int record = x - best_below_byte > 5000; 3018 int record = x - best_below_byte > 5000;
3019 3019
3020 #ifdef OLD_LOOP /* old code */ 3020 #ifdef OLD_LOOP /* old code */
3021 (best_below_byte < x) 3021 while (best_below_byte < x)
3022 { 3022 {
3023 best_below++; 3023 best_below++;
3024 INC_BYTEBPOS (buf, best_below_byte); 3024 INC_BYTEBPOS (buf, best_below_byte);
3025 } 3025 }
3026 #else 3026 #else