The R Project SVN R

Rev

Rev 56370 | Rev 82747 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 56370 Rev 57571
Line 219... Line 219...
219
	}
219
	}
220
      DPRINT(("skipped %lu chars\n", (unsigned long)(str_byte - orig_str)));
220
      DPRINT(("skipped %lu chars\n", (unsigned long)(str_byte - orig_str)));
221
      if (str_byte >= orig_str + 1)
221
      if (str_byte >= orig_str + 1)
222
	prev_c = (unsigned char)*(str_byte - 1);
222
	prev_c = (unsigned char)*(str_byte - 1);
223
      next_c = (unsigned char)*str_byte;
223
      next_c = (unsigned char)*str_byte;
224
      pos = str_byte - orig_str;
224
      pos = (int)(str_byte - orig_str);
225
      if (len < 0 || pos < len)
225
      if (len < 0 || pos < len)
226
	str_byte++;
226
	str_byte++;
227
    }
227
    }
228
  else
228
  else
229
    {
229
    {