diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-22 13:25:22 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-22 13:25:22 +0000 |
commit | 8e032a17efe4851c9c9de61775101e890d5594f1 (patch) | |
tree | a25ca13e8b26f21c50a5861b56fcf0f27c05161a /src/options.c | |
parent | 3813e221c2762f3d8c328f40c42e39386cbaae53 (diff) | |
download | mpd-8e032a17efe4851c9c9de61775101e890d5594f1.tar.gz mpd-8e032a17efe4851c9c9de61775101e890d5594f1.tar.xz mpd-8e032a17efe4851c9c9de61775101e890d5594f1.zip |
Added options: audible-bell, visible-bell, wrap-around, find-wrap
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1611 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/options.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/options.c b/src/options.c index 952f436d5..e958e4b95 100644 --- a/src/options.c +++ b/src/options.c @@ -176,11 +176,10 @@ options_init( void ) options.list_format = NULL; options.status_format = NULL; - options.reconnect = 1; - options.find_wrap = 1; - options.wide_cursor = 1; - options.enable_beep = 1; - + options.reconnect = TRUE; + options.find_wrap = TRUE; + options.wide_cursor = TRUE; + options.audible_bell = TRUE; return &options; } |