X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fconf.c;h=9d1f8828d8d28d59dab74bbc71cf8bed4fe54801;hb=549fcb39eb7d3d229550af78b03b53cfcad299b8;hp=0403559cfe5fe34fc1098ced0d371ab18c6e31a2;hpb=7fa7a969f4a78792ecfe2c395c02b1d119c1bc48;p=ncmpc.git diff --git a/src/conf.c b/src/conf.c index 0403559..9d1f882 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,21 +1,21 @@ /* ncmpc (Ncurses MPD Client) * (c) 2004-2010 The Music Player Daemon Project * Project homepage: http://musicpd.org - + * * 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 * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ + */ #include "conf.h" #include "config.h" @@ -77,6 +77,7 @@ #define CONF_JUMP_PREFIX_ONLY "jump-prefix-only" #define CONF_LYRICS_AUTOSAVE "lyrics-autosave" #define CONF_LYRICS_SHOW_PLUGIN "lyrics-show-plugin" +#define CONF_TEXT_EDITOR "text-editor" #define CONF_SECOND_COLUMN "second-column" static bool @@ -522,6 +523,15 @@ parse_line(char *line) options.lyrics_show_plugin = str2bool(value); #else {} +#endif + else if (!strcasecmp(name, CONF_TEXT_EDITOR)) +#ifdef ENABLE_LYRICS_SCREEN + { + g_free(options.text_editor); + options.text_editor = get_format(value); + } +#else + {} #endif else if (!strcasecmp(CONF_SECOND_COLUMN, name)) #ifdef NCMPC_MINI @@ -575,7 +585,11 @@ check_user_conf_dir(void) return 0; } +#ifndef WIN32 retval = mkdir(directory, 0755); +#else + retval = mkdir(directory); +#endif g_free(directory); return retval; }