Sun Feb 29 17:51:48 2004 Michael Jennings (mej)

Disable use of ~/user.cfg as requested by Laurence J. Lane
<ljlane@debian.org>.


SVN revision: 9166
This commit is contained in:
Michael Jennings 2004-02-29 22:46:12 +00:00
parent 41ba8fec04
commit 4272606b8e
3 changed files with 6 additions and 1 deletions

View File

@ -5173,3 +5173,8 @@ Wed Feb 11 14:06:20 2004 Michael Jennings (mej)
Fixed handling of escape sequences while printing. Pointed out by
Tom A. Cox <tomc@hot.rr.com>.
----------------------------------------------------------------------
Sun Feb 29 17:51:48 2004 Michael Jennings (mej)
Disable use of ~/user.cfg as requested by Laurence J. Lane
<ljlane@debian.org>.
----------------------------------------------------------------------

View File

@ -156,7 +156,7 @@ eterm_bootstrap(int argc, char *argv[])
sprintf(tmp, "ETERM_THEME_ROOT=%s", theme_dir);
putenv(tmp);
}
if ((user_dir = conf_parse_theme(&rs_theme, (rs_config_file ? rs_config_file : USER_CFG), (PARSE_TRY_USER_THEME | PARSE_TRY_NO_THEME))) != NULL) {
if ((user_dir = conf_parse_theme(&rs_theme, (rs_config_file ? rs_config_file : USER_CFG), (PARSE_TRY_USER_THEME))) != NULL) {
char *tmp;
D_OPTIONS(("conf_parse_theme() returned \"%s\"\n", user_dir));