diff options
author | mycroft <mycroft@pkgsrc.org> | 1998-03-07 19:55:38 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 1998-03-07 19:55:38 +0000 |
commit | 281e920b2a6187dc2226404b62f5c302806e206a (patch) | |
tree | e49a2ae1f5404f292c945d7b5c7dbfc031dcce7c /audio/timidity | |
parent | 823f06b851832764ca82e55d2cb9a4a436ac5696 (diff) | |
download | pkgsrc-281e920b2a6187dc2226404b62f5c302806e206a.tar.gz |
Fix the bug in the Curses interface where it clears the screen.
Diffstat (limited to 'audio/timidity')
-rw-r--r-- | audio/timidity/patches/patch-bf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/timidity/patches/patch-bf b/audio/timidity/patches/patch-bf new file mode 100644 index 00000000000..f697123d2ba --- /dev/null +++ b/audio/timidity/patches/patch-bf @@ -0,0 +1,11 @@ +--- ncurs_c.c.orig Mon May 20 17:27:35 1996 ++++ ncurs_c.c Sat Mar 7 14:51:09 1998 +@@ -422,7 +422,7 @@ + static int ctl_read(int32 *valp) + { + int c; +- while ((c=getch())!=ERR) ++ while ((c=wgetch(dftwin))!=ERR) + { + switch(c) + { |