suspending nano on the Hurd.
- winio.c:
update_line()
- - back out check for (realdata[i] < 32) as it will screw high
- ascii characters.
+ - set realdata check to >= 1 && <= 31, lack of > 0 check screwed
+ high ascii characters.
- m4/gettext.m4:
- Back down to 1.1.3 version.
virt_cur_x--;
if (i < mark_beginx)
virt_mark_beginx--;
- } else if (realdata[i] >= 1 && realdata[i] <= 26) {
+ } else if (realdata[i] >= 1 && realdata[i] <= 31) {
/* Treat control characters as ^letter */
fileptr->data[pos++] = '^';
fileptr->data[pos++] = realdata[i] + 64;