diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-15 13:10:54 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-15 13:10:54 +0000 |
commit | a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b (patch) | |
tree | 4453a83e1015fd6ff431f7ec6903e8ff7517415c /src/options.c | |
parent | 4800010b0422f05c31db877011a0f62d992740e2 (diff) | |
download | mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.tar.gz mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.tar.xz mpd-a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b.zip |
Added list-format and status-format conf options
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1496 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c index 416727ad3..952f436d5 100644 --- a/src/options.c +++ b/src/options.c @@ -1,5 +1,7 @@ /* - * (c) 2004 by Kalle Wallin (kaw@linux.se) + * $Id$ + * + * (c) 2004 by Kalle Wallin <kaw@linux.se> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,6 +27,7 @@ #include <popt.h> #include "config.h" +#include "ncmpc.h" #include "options.h" #include "command.h" #include "support.h" @@ -170,9 +173,14 @@ options_init( void ) else options.port = DEFAULT_PORT; + options.list_format = NULL; + options.status_format = NULL; + options.reconnect = 1; options.find_wrap = 1; options.wide_cursor = 1; + options.enable_beep = 1; + return &options; } |