mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix my breakage. Sorry guys.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9524 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
13f6449769
commit
2b2c27a700
@ -1,3 +1,8 @@
|
||||
2005-01-22 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* path.C (Path): revert the patch since the if statement has side
|
||||
effects that are needed for the code to work :-(
|
||||
|
||||
2005-01-21 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* os_cygwin.C, os_win32.C: strip the Cygwin-specific stuff out of
|
||||
|
@ -28,10 +28,9 @@ Path::Path(string const & path)
|
||||
{
|
||||
if (!path.empty()) {
|
||||
pushedDir_ = getcwd();
|
||||
#if 0
|
||||
|
||||
if (pushedDir_.empty() || chdir(path))
|
||||
/* FIXME: throw */;
|
||||
#endif
|
||||
} else {
|
||||
popped_ = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user