comparison src/redisplay.c @ 3498:b03fc4eae965

[xemacs-hg @ 2006-07-08 16:15:54 by aidan] Fix a Mule build failure, update comments.
author aidan
date Sat, 08 Jul 2006 16:15:57 +0000
parents 316fddbf58e2
children 98af8a976fc3
comparison
equal deleted inserted replaced
3497:45671f160bd5 3498:b03fc4eae965
1426 data->cursor_type = IGNORE_CURSOR; 1426 data->cursor_type = IGNORE_CURSOR;
1427 1427
1428 if (data->ch >= 0x100) 1428 if (data->ch >= 0x100)
1429 { 1429 {
1430 /* If the character is an extended Mule character, it could have 1430 /* If the character is an extended Mule character, it could have
1431 up to 19 bits. For the moment, we treat it as a seven-digit 1431 up to 21 bits. For the moment, we treat it as a seven-digit
1432 octal number. This is not that pretty, but whatever. */ 1432 octal number. This is not that pretty, but whatever. */
1433 data->ch = (7 & (orig_char >> 18)) + '0'; 1433 data->ch = (7 & (orig_char >> 18)) + '0';
1434 ADD_NEXT_OCTAL_RUNE_CHAR; 1434 ADD_NEXT_OCTAL_RUNE_CHAR;
1435 1435
1436 data->ch = (7 & (orig_char >> 15)) + '0'; 1436 data->ch = (7 & (orig_char >> 15)) + '0';