summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-11-04 20:06:48 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-11-04 20:06:48 +0000
commitcf092dc27fbf605fc6546c1bfa8804147068da64 (patch)
treeb9d731cac7a65d3d7e1d0ed03c20b0130d50dca2 /input.c
parent25975cf5aea50f328abda5e893cb48aa2fbf1e1e (diff)
This breaks mutt.
Diffstat (limited to 'input.c')
-rw-r--r--input.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/input.c b/input.c
index dddba74b..c8cd1e25 100644
--- a/input.c
+++ b/input.c
@@ -1,4 +1,4 @@
-/* $Id: input.c,v 1.64 2008-11-04 19:28:58 nicm Exp $ */
+/* $Id: input.c,v 1.65 2008-11-04 20:06:48 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -604,9 +604,11 @@ input_handle_private_two(u_char ch, struct input_ctx *ictx)
log_debug2("-- p2 %zu: %hhu (%c)", ictx->off, ch, ch);
switch (ch) {
+#if 0
case '0': /* Don't know? */
ictx->cell.attr |= GRID_ATTR_CHARSET;
break;
+#endif
case '=': /* DECKPAM */
screen_write_kkeypadmode(&ictx->ctx, 1);
log_debug("kkeypad on (application mode)");
@@ -637,9 +639,11 @@ input_handle_standard_two(u_char ch, struct input_ctx *ictx)
log_debug2("-- s2 %zu: %hhu (%c)", ictx->off, ch, ch);
switch (ch) {
+#if 0
case 'B': /* Don't know? */
ictx->cell.attr &= ~GRID_ATTR_CHARSET;
break;
+#endif
case 'c': /* RIS */
memcpy(&ictx->cell, &grid_default_cell, sizeof ictx->cell);