From cf092dc27fbf605fc6546c1bfa8804147068da64 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 4 Nov 2008 20:06:48 +0000 Subject: [PATCH] This breaks mutt. --- input.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 @@ -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);