comparison src/regex.c @ 21838:1d93b782b983

(re_search_2): Fix indentation.
author Andreas Schwab <schwab@suse.de>
date Wed, 29 Apr 1998 09:23:15 +0000
parents f97c01dfd603
children b717a61747c5
comparison
equal deleted inserted replaced
21837:ea78758c282e 21838:1d93b782b983
3784 if (startpos < size1 && startpos + range >= size1) 3784 if (startpos < size1 && startpos + range >= size1)
3785 lim = range - (size1 - startpos); 3785 lim = range - (size1 - startpos);
3786 3786
3787 /* Written out as an if-else to avoid testing `translate' 3787 /* Written out as an if-else to avoid testing `translate'
3788 inside the loop. */ 3788 inside the loop. */
3789 if (RE_TRANSLATE_P (translate)) 3789 if (RE_TRANSLATE_P (translate))
3790 { 3790 {
3791 if (multibyte) 3791 if (multibyte)
3792 while (range > lim) 3792 while (range > lim)
3793 { 3793 {
3794 int buf_charlen; 3794 int buf_charlen;
3795 3795