mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +00:00
* 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:
parent
84e22d209e
commit
98097da2c9
@ -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>
|
2006-08-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
* BufferView_pimpl.C (dispatch/LFUN_NEXT_INSET_TOGGLE): moved from
|
* BufferView_pimpl.C (dispatch/LFUN_NEXT_INSET_TOGGLE): moved from
|
||||||
|
@ -458,12 +458,12 @@ void LyX::init()
|
|||||||
if (!lyxrc.path_prefix.empty())
|
if (!lyxrc.path_prefix.empty())
|
||||||
prependEnvPath("PATH", lyxrc.path_prefix);
|
prependEnvPath("PATH", lyxrc.path_prefix);
|
||||||
|
|
||||||
// Check that user LyX directory is ok. We don't do that if
|
// Check that user LyX directory is ok.
|
||||||
// running in batch mode.
|
if (queryUserLyXDir(package().explicit_user_support()))
|
||||||
if (lyx_gui::use_gui) {
|
reconfigureUserLyXDir();
|
||||||
if (queryUserLyXDir(package().explicit_user_support()))
|
|
||||||
reconfigureUserLyXDir();
|
// no need for a splash when there is no GUI
|
||||||
} else {
|
if (!lyx_gui::use_gui) {
|
||||||
first_start = false;
|
first_start = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,6 +77,8 @@ What's new
|
|||||||
|
|
||||||
- Log the output of configure.py to a log file configure.log.
|
- 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
|
- Change the encoding of some python scripts from iso-8859-15 to
|
||||||
iso-8859-1. The former causes problems with embedded python.
|
iso-8859-1. The former causes problems with embedded python.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user