diff options
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf.c b/src/conf.c index f1f1223a3..b31b7b173 100644 --- a/src/conf.c +++ b/src/conf.c @@ -57,7 +57,7 @@ #define CONF_AUDIBLE_BELL "audible-bell" #define CONF_VISIBLE_BELL "visible-bell" #define CONF_XTERM_TITLE "set-xterm-title" -#define CONF_MOUSE_EVENTS "enable-mouse" +#define CONF_ENABLE_MOUSE "enable-mouse" typedef enum { KEY_PARSER_UNKNOWN, @@ -463,9 +463,9 @@ read_rc_file(char *filename, options_t *options) { options->enable_xterm_title = str2bool(value); } - else if( !strcasecmp(CONF_MOUSE_EVENTS, name) ) + else if( !strcasecmp(CONF_ENABLE_MOUSE, name) ) { - options->enable_mouse_events = str2bool(value); + options->enable_mouse = str2bool(value); } else { |