From aa11ee4b0f6b186c0beca5b6bc1f818cebe981f5 Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Wed, 15 Jun 2005 20:36:50 +0000 Subject: New configuraton option: find-show-last git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3359 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/conf.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/conf.c') diff --git a/src/conf.c b/src/conf.c index 73135b8f6..4b5e49230 100644 --- a/src/conf.c +++ b/src/conf.c @@ -54,6 +54,7 @@ #define CONF_XTERM_TITLE_FORMAT "xterm-title-format" #define CONF_LIST_WRAP "wrap-around" #define CONF_FIND_WRAP "find-wrap" +#define CONF_FIND_SHOW_LAST "find-show-last" #define CONF_AUDIBLE_BELL "audible-bell" #define CONF_VISIBLE_BELL "visible-bell" #define CONF_XTERM_TITLE "set-xterm-title" @@ -490,6 +491,10 @@ read_rc_file(char *filename, options_t *options) { options->find_wrap = str2bool(value); } + else if( !strcasecmp(CONF_FIND_SHOW_LAST,name) ) + { + options->find_show_last_pattern = str2bool(value); + } else if( !strcasecmp(CONF_AUDIBLE_BELL, name) ) { options->audible_bell = str2bool(value); -- cgit v1.2.3