From: Jonathan Neuschäfer Date: Wed, 21 Dec 2011 19:14:04 +0000 (+0100) Subject: options: don't use "editor" as the default editor X-Git-Tag: release-0.20~32 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cdd7b26337efec6c0a1d7eb7940afda6202090e2;p=ncmpc.git options: don't use "editor" as the default editor Just leave it unconfigured for as long as the editor fallback machanism isn't yet implemented. --- diff --git a/src/defaults.h b/src/defaults.h index b8bc81a..61795b0 100644 --- a/src/defaults.h +++ b/src/defaults.h @@ -34,8 +34,6 @@ #define DEFAULT_LYRICS_TIMEOUT 100 -#define DEFAULT_TEXT_EDITOR "editor" - #define DEFAULT_MPD_TIMEOUT 5000 /* 5 seconds */ #define DEFAULT_SCROLL TRUE diff --git a/src/options.c b/src/options.c index 0495353..9bc338e 100644 --- a/src/options.c +++ b/src/options.c @@ -369,9 +369,6 @@ options_init(void) options.list_format = g_strdup(DEFAULT_LIST_FORMAT); options.status_format = g_strdup(DEFAULT_STATUS_FORMAT); options.screen_list = g_strsplit_set(DEFAULT_SCREEN_LIST, " ", 0); -#ifdef ENABLE_LYRICS_SCREEN - options.text_editor = g_strdup(DEFAULT_TEXT_EDITOR); -#endif #ifndef NCMPC_MINI options.scroll_sep = g_strdup(DEFAULT_SCROLL_SEP); #endif