* src/lyx_main.C (init): Do automatic reconfiguration even when

running in batch mode (bug 2741).



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14618 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-08-11 22:10:23 +00:00
parent 84e22d209e
commit 98097da2c9
3 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2006-08-11 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* lyx_main.C (init): Do automatic reconfiguration even when
running in batch mode (bug 2741).
2006-08-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* BufferView_pimpl.C (dispatch/LFUN_NEXT_INSET_TOGGLE): moved from

View File

@ -458,12 +458,12 @@ void LyX::init()
if (!lyxrc.path_prefix.empty())
prependEnvPath("PATH", lyxrc.path_prefix);
// Check that user LyX directory is ok. We don't do that if
// running in batch mode.
if (lyx_gui::use_gui) {
if (queryUserLyXDir(package().explicit_user_support()))
reconfigureUserLyXDir();
} else {
// Check that user LyX directory is ok.
if (queryUserLyXDir(package().explicit_user_support()))
reconfigureUserLyXDir();
// no need for a splash when there is no GUI
if (!lyx_gui::use_gui) {
first_start = false;
}

View File

@ -77,6 +77,8 @@ What's new
- Log the output of configure.py to a log file configure.log.
- Do automatic reconfiguration even when running in batch mode (bug 2741).
- Change the encoding of some python scripts from iso-8859-15 to
iso-8859-1. The former causes problems with embedded python.