add missing space after lyxformat

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1314 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-01-11 11:12:33 +00:00
parent 716cd578ae
commit b86037626b
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2001-01-11 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/buffer.C (writeFile): add missing ' ' after lyxformat.
* src/buffer.h: change format to int, and change name to file_format
* src/buffer.C: change LYX_FORMAT to int, and bump version number

View File

@ -1293,7 +1293,7 @@ bool Buffer::writeFile(string const & fname, bool flag) const
ofs << "\\lyxformat " << setw(4) << LYX_FORMAT << "\n";
#endif
#else
ofs << "\\lyxformat" << LYX_FORMAT << "\n";
ofs << "\\lyxformat " << LYX_FORMAT << "\n";
#endif
// now write out the buffer paramters.
params.writeFile(ofs);