mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
Put \protect before paragraph alignment commands
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1330 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
70e0e7bc5b
commit
a00c4b07a3
@ -1,4 +1,7 @@
|
||||
2001-01-13 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
|
||||
alignment commands (when needed).
|
||||
|
||||
* text.C (InsertChar): Add ':' to number separator chars.
|
||||
|
||||
|
@ -2563,6 +2563,8 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
|
||||
case LYX_ALIGN_SPECIAL:
|
||||
break;
|
||||
case LYX_ALIGN_LEFT:
|
||||
if (moving_arg)
|
||||
os << "\\protect";
|
||||
if (getParLanguage(bparams)->babel() != "hebrew") {
|
||||
os << "\\raggedright ";
|
||||
column+= 13;
|
||||
@ -2572,6 +2574,8 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
|
||||
}
|
||||
break;
|
||||
case LYX_ALIGN_RIGHT:
|
||||
if (moving_arg)
|
||||
os << "\\protect";
|
||||
if (getParLanguage(bparams)->babel() != "hebrew") {
|
||||
os << "\\raggedleft ";
|
||||
column+= 12;
|
||||
@ -2581,6 +2585,8 @@ bool LyXParagraph::SimpleTeXOnePar(Buffer const * buf,
|
||||
}
|
||||
break;
|
||||
case LYX_ALIGN_CENTER:
|
||||
if (moving_arg)
|
||||
os << "\\protect";
|
||||
os << "\\centering ";
|
||||
column+= 11;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user