- winio.c:update_line() - set realdata check to >= 1 && <= 31, lack of > 0 check screwed high ascii chars

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@937 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-12-19 16:20:43 +00:00
parent cf6807100b
commit 3c57e50db8
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ CVS code -
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.

View File

@ -1027,7 +1027,7 @@ void update_line(filestruct * fileptr, int index)
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;