parent
bc3777792d
commit
5834a4b938
|
@ -4397,10 +4397,8 @@ static unsigned char *add_byte_range(const unsigned char *lo, const unsigned cha
|
||||||
/* Fill out [nxxxx, p0000) */
|
/* Fill out [nxxxx, p0000) */
|
||||||
if (p > lo[same_chars]) {
|
if (p > lo[same_chars]) {
|
||||||
r = make_room(r, j, 2, rs);
|
r = make_room(r, j, 2, rs);
|
||||||
if (!did_alt) {
|
if (!did_alt)
|
||||||
r[j++] = '|';
|
r[j++] = '|';
|
||||||
did_alt = 1;
|
|
||||||
}
|
|
||||||
r[j++] = lo[same_chars];
|
r[j++] = lo[same_chars];
|
||||||
*_j = j;
|
*_j = j;
|
||||||
r = add_byte_range(lo XFORM_OK_PLUS same_chars + 1, highest, count - same_chars - 1,
|
r = add_byte_range(lo XFORM_OK_PLUS same_chars + 1, highest, count - same_chars - 1,
|
||||||
|
@ -4413,10 +4411,8 @@ static unsigned char *add_byte_range(const unsigned char *lo, const unsigned cha
|
||||||
/* Fill out [m0000, mxxxx] */
|
/* Fill out [m0000, mxxxx] */
|
||||||
if (q < hi[same_chars]) {
|
if (q < hi[same_chars]) {
|
||||||
r = make_room(r, j, 2, rs);
|
r = make_room(r, j, 2, rs);
|
||||||
if (!did_alt) {
|
if (!did_alt)
|
||||||
r[j++] = '|';
|
r[j++] = '|';
|
||||||
did_alt = 1;
|
|
||||||
}
|
|
||||||
r[j++] = hi[same_chars];
|
r[j++] = hi[same_chars];
|
||||||
*_j = j;
|
*_j = j;
|
||||||
r = add_byte_range(lowest, hi XFORM_OK_PLUS same_chars + 1, count - same_chars - 1,
|
r = add_byte_range(lowest, hi XFORM_OK_PLUS same_chars + 1, count - same_chars - 1,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user