Font.cpp: fix bug #8424 also for branch

- Font.cpp: fix the bug
- status.20x: fix the formatting/style
This commit is contained in:
Uwe Stöhr 2012-11-20 22:22:52 +01:00
parent 88380cfcd6
commit 0493893fdd
2 changed files with 8 additions and 6 deletions

View File

@ -332,7 +332,7 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
}
}
// When the current language is Hebrew, Arabic, or Farsi
// If the current language is Hebrew, Arabic, or Farsi
// the numbers are written Left-to-Right. ArabTeX package
// reorders the number automatically but the packages used
// for Hebrew and Farsi (Arabi) do not.
@ -428,7 +428,7 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
}
os << '\\'
<< LaTeXSizeNames[f.size()]
<< ' ';
<< '{';
count += strlen(LaTeXSizeNames[f.size()]) + 2;
}
return count;
@ -513,6 +513,8 @@ int Font::latexWriteEndChanges(otexstream & os, BufferParams const & bparams,
os << '}';
++count;
}
os << '}';
++count;
}
// When the current language is Hebrew, Arabic, or Farsi

View File

@ -55,18 +55,18 @@ What's new
* DOCUMENT INPUT/OUTPUT
- Do not let child document's settings override master settings
(bug #5941).
- Do not let child document's settings override master settings (bug 5941).
- Correct output of text in changed font size and with decorations (bug 8424).
* USER INTERFACE
- Fix regression in which clicking in the main work area always resets
the selected format in View > Source (bug #8411).
the selected format in View > Source (bug 8411).
- When selecting text and Insert > Preview, immediately display the
preview (bug #8075).
preview (bug 8075).
* DOCUMENTATION AND LOCALIZATION