mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
DocBook fix from Jose'
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@377 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
da83a9d5de
commit
a9564b8ee2
@ -1,3 +1,11 @@
|
|||||||
|
1999-12-14 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
|
* src/buffer.C (makeDocBookFile): update version number in output
|
||||||
|
file.
|
||||||
|
(SimpleDocBookOnePar): fix an assert when trying to a character
|
||||||
|
access beyond string length
|
||||||
|
[Patch from Jose']
|
||||||
|
|
||||||
1999-12-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
1999-12-13 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* po/de.po: fix the Export menu
|
* po/de.po: fix the Export menu
|
||||||
|
@ -2790,7 +2790,7 @@ void Buffer::makeDocBookFile(string const & filename, int column)
|
|||||||
ofs << "\n [ " << params.preamble << " \n]>\n\n";
|
ofs << "\n [ " << params.preamble << " \n]>\n\n";
|
||||||
|
|
||||||
string userName(getUserName());
|
string userName(getUserName());
|
||||||
ofs << "<!-- DocBook file was created by LyX 1.0 (C) 1995-1999\n"
|
ofs << "<!-- DocBook file was created by LyX 1.1 (C) 1995-1999\n"
|
||||||
<< "by <" << userName << "> " << date() << " -->\n";
|
<< "by <" << userName << "> " << date() << " -->\n";
|
||||||
|
|
||||||
if(params.options.empty())
|
if(params.options.empty())
|
||||||
@ -3107,7 +3107,7 @@ void Buffer::SimpleDocBookOnePar(string & file, string & extra,
|
|||||||
// desc_on == 4
|
// desc_on == 4
|
||||||
//
|
//
|
||||||
if(desc_on!= 3 || i!= 0) {
|
if(desc_on!= 3 || i!= 0) {
|
||||||
if(tmp_out[0] == '@') {
|
if(!tmp_out.empty() && tmp_out[0] == '@') {
|
||||||
if(desc_on == 4)
|
if(desc_on == 4)
|
||||||
extra += frontStrip(tmp_out, '@');
|
extra += frontStrip(tmp_out, '@');
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user