- Add comment on patch-ae (from commit log) - Remove patch-ad, patched line (file) no longer exists (upstream) Update 0.21 to 0.24 ncmpc 0.24 - (2014-07-14) * fix crash on "jump" (hotkey ".") * save keys to path specified by --key-file ncmpc 0.23 - (2014-07-10) * fix broken l10n in out-of-tree builds ncmpc 0.22 - (2014-06-09) * rename "playlist" to "queue" * remove useless "Connected to ..." message * require libmpdclient 2.3, MPD 0.16 * patched color line-flags * configuration option "search-format" * remove broken leoslyrics plugin * show audio format in song screen
17 lines
492 B
Text
17 lines
492 B
Text
$NetBSD: patch-ae,v 1.2 2014/11/21 13:47:47 mef Exp $
|
|
|
|
(from the commit log)
|
|
date: 2010-02-25 03:08:12 +0900; author: drochner; state: Exp;
|
|
-Set the keyboard mode to raw() explicitely. ncurses seems to do
|
|
this in some magical way, didn't find a hint in documentation.
|
|
|
|
--- src/ncu.c.orig 2009-09-24 14:05:30.000000000 +0000
|
|
+++ src/ncu.c
|
|
@@ -58,6 +58,7 @@ ncu_init(void)
|
|
|
|
/* enable extra keys */
|
|
keypad(stdscr, TRUE);
|
|
+ raw();
|
|
|
|
/* initialize mouse support */
|
|
#ifdef HAVE_GETMOUSE
|