Remove geometry "fix".

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@3078 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-11-26 14:50:10 +00:00
parent c041aa0ecb
commit 458c3c6c15
2 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,6 @@
2001-11-25 Dekel Tsur <dekelts@tau.ac.il>
e2001-11-25 Dekel Tsur <dekelts@tau.ac.il>
* src/buffer.C (makeLaTeXFile): Use the twoside option for the geometry
package when necessary.
(parseSingleLyXformat2Token): Insert an error inset
* src/buffer.C (parseSingleLyXformat2Token): Insert an error inset
when encountering an unknown token.
(readLyXformat2): Show an error message if there were unknown tokens.

View File

@ -1851,8 +1851,6 @@ void Buffer::makeLaTeXFile(string const & fname,
ofs << "\\usepackage{geometry}\n";
texrow.newline();
ofs << "\\geometry{verbose";
if (params.sides == LyXTextClass::TwoSides)
ofs << ",twoside";
if (params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
ofs << ",landscape";
switch (params.papersize2) {