aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/screen.c2
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1978644f2..45c6942e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
+2004-07-21 Kalle Wallin <kaw@linux.se>
+ * Added Spanish translations from Jose Cedeno
+ * command.c: dont lookup key if key==0 in find_key_command()
+ * screen.c: initialize dummy/last mode id to G_MAXINT
+
2004-07-13 Kalle Wallin <kaw@linux.se>
* command.c: added my_wgetch() function,
Ctrl-C, Ctrl-Z are now hard coded to SIGINT and SIGSTOP
* options.c: added options --mouse and --no-mouse
* Crossfade time can now be definied in the conf file (crossfade-time)
+ * r1865
2004-07-12 Kalle Wallin <kaw@linux.se>
* options.c: fixed short option handling for multiple short options
@@ -15,7 +21,7 @@
* Mouse support is now optional (enable-mouse)
2004-07-09 Kalle Wallin <kaw@linux.se>
- * ncmpc-0.11.0 released (r1820)
+ * ncmpc-0.11.0 (r1820)
2004-07-08 Kalle Wallin <kaw@linux.se>
* doc/keys.sample: Welcome back
diff --git a/src/screen.c b/src/screen.c
index 966dbd303..2e0bad8ee 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -75,7 +75,7 @@ static screen_mode_info_t screens[] = {
#ifdef ENABLE_CLOCK_SCREEN
{ SCREEN_CLOCK_ID, "clock", get_screen_clock },
#endif
- { -1, NULL, NULL }
+ { G_MAXINT, NULL, NULL }
};
static gboolean welcome = TRUE;