mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
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:
parent
716cd578ae
commit
b86037626b
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user