From a7a872f694f5ff24eda3a5d7e35b7dcb8271e807 Mon Sep 17 00:00:00 2001 From: Yevgen Muntyan <17531749+muntyan@users.noreply.github.com> Date: Fri, 15 Jul 2005 14:34:12 +0000 Subject: [PATCH] Ignore -1 --- moo/mooterm/mooterm-vt.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/moo/mooterm/mooterm-vt.h b/moo/mooterm/mooterm-vt.h index c9a4c782..88939f0f 100644 --- a/moo/mooterm/mooterm-vt.h +++ b/moo/mooterm/mooterm-vt.h @@ -236,12 +236,8 @@ enum { case 103: \ case 104: \ case 106: \ - g_warning ("%s: ignoring mode %d", \ - G_STRFUNC, code); \ - break; \ - \ case 1001: \ - g_message ("%s: ignoring mode %d", \ + g_message ("%s: IGNORING mode %d", \ G_STRFUNC, code); \ break; \ \ @@ -281,6 +277,9 @@ enum { G_STRFUNC, code); \ break; \ \ + case -1: \ + break; \ + \ default: \ g_warning ("%s: unknown mode %d", \ G_STRFUNC, code); \