8th bit, since that only made since in the ASCII world (bug#4751).
+2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * character.c (char_resolve_modifier_mask): Don't resolve meta to the
+ 8th bit, since that only made since in the ASCII world (bug#4751).
+
2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
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;
}