[855] in BarnOwl Developers
[D-O-H] r844 - branches/barnowl_unicode/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:10:27 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Fri, 11 Jan 2008 23:59:42 -0500 (EST)
Author: asedeno
Date: 2008-01-11 23:59:42 -0500 (Fri, 11 Jan 2008)
New Revision: 844
Modified:
branches/barnowl_unicode/owl/owl.h
Log:
unicode/glib
* Do not use bit 0x80 to indicate meta. We have other uses for that bit.
* shift it above ncurses's KEY_MAX instead.
Modified: branches/barnowl_unicode/owl/owl.h
===================================================================
--- branches/barnowl_unicode/owl/owl.h 2008-01-12 04:03:31 UTC (rev 843)
+++ branches/barnowl_unicode/owl/owl.h 2008-01-12 04:59:42 UTC (rev 844)
@@ -231,7 +231,7 @@
#define OWL_ENABLE_ZCRYPT 1
#endif
-#define OWL_META(key) ((key)|0200)
+#define OWL_META(key) ((key)|010000)
/* OWL_CTRL is definied in kepress.c */
#define LINE 2048