diff src/character.c @ 105688:dfb23d6b0762

(char_resolve_modifier_mask): Don't resolve meta to the 8th bit, since that only made since in the ASCII world (bug#4751).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 20 Oct 2009 13:48:37 +0000
parents 68dd71358159
children 21bdda3ded62
line wrap: on
line diff
--- a/src/character.c	Tue Oct 20 10:21:25 2009 +0000
+++ b/src/character.c	Tue Oct 20 13:48:37 2009 +0000
@@ -127,11 +127,13 @@
       else if ((c & 0177) >= 0100 && (c & 0177) <= 0137)
 	c &= (037 | (~0177 & ~CHAR_CTL));
     }
+#if 0	/* This is outside the scope of this function.  (bug#4751)  */
   if (c & CHAR_META)
     {
       /* Move the meta bit to the right place for a string.  */
       c = (c & ~CHAR_META) | 0x80;
     }
+#endif
 
   return c;
 }