Package: playmidi
Version: 2.4
Author: Guillem Jover <guillem@hadrons.org>
Status: fixed
Debbug: 141702
Description:
 Deignore important MIDI messages.

diff -Nurd playmidi-2.4/io_ncurses.c playmidi-2.4-patched/io_ncurses.c
--- playmidi-2.4/io_ncurses.c	Thu Jul 18 20:58:10 2002
+++ playmidi-2.4-patched/io_ncurses.c	Thu Jul 18 22:33:16 2002
@@ -161,7 +161,7 @@
     if (cmd < 8 && cmd > 0) {
 	if (length > COLS)
 	    length = COLS;
-	if (cmd != 1 && strncmp(textbuf, data, length - 1) == 0)
+	if (cmd == 3 && strncmp(textbuf, data, length - 1) == 0)
 	     return;	/* ignore repeat messages, "WinJammer Demo" etc. */
 	if (verbose) {
 	    printf("%s: ", metatype[cmd - 1]);
