1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-21 01:15:22 +00:00

Align cursor movement according to character representation (^c and \nn).

This commit is contained in:
Renaud 2015-01-31 07:57:26 +08:00
parent a6a8936b8d
commit 7c74bfdc1a

View File

@ -576,6 +576,12 @@ void updpos(void)
i += bytes;
if (c == '\t')
curcol |= tabmask;
else if( bytes == 1) {
if( c < 0x20 || c == 0x7F)
curcol += 1 ; /* displayed as ^c */
else if( c >= 0x80 && c <= 0xA0)
curcol += 2 ; /* displayed as \xx */
}
++curcol;
}