diff 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
line wrap: on
line diff
--- a/src/redisplay.c	Sat Jul 08 09:18:01 2006 +0000
+++ b/src/redisplay.c	Sat Jul 08 16:15:57 2006 +0000
@@ -1428,7 +1428,7 @@
   if (data->ch >= 0x100)
     {
       /* If the character is an extended Mule character, it could have
-	 up to 19 bits.  For the moment, we treat it as a seven-digit
+	 up to 21 bits.  For the moment, we treat it as a seven-digit
 	 octal number.  This is not that pretty, but whatever. */
       data->ch = (7 & (orig_char >> 18)) + '0';
       ADD_NEXT_OCTAL_RUNE_CHAR;