mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
fix a crash while importing from LaTeX
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8124 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1da447e8fd
commit
f61322848d
@ -1,3 +1,8 @@
|
||||
2003-11-24 Alfredo Braunstein <abraunst@lyx.org>
|
||||
|
||||
* converter.C (convert): fix a crash: this function gets
|
||||
called with buffer == 0 from importer code.
|
||||
|
||||
2003-11-22 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* text3.C (cursorPrevious): make sure that we do not compare
|
||||
|
@ -355,7 +355,9 @@ bool Converters::convert(Buffer const * buffer,
|
||||
dvipdfm_options(buffer->params()));
|
||||
|
||||
lyxerr[Debug::FILES] << "Calling " << command << endl;
|
||||
buffer->message(_("Executing command: ") + command);
|
||||
if (buffer)
|
||||
buffer->message(_("Executing command: ")
|
||||
+ command);
|
||||
|
||||
Systemcall::Starttype type = (dummy)
|
||||
? Systemcall::DontWait : Systemcall::Wait;
|
||||
|
Loading…
Reference in New Issue
Block a user