]> git.lyx.org Git - features.git/commitdiff
add missing space after lyxformat
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 11 Jan 2001 11:12:33 +0000 (11:12 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 11 Jan 2001 11:12:33 +0000 (11:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1314 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/buffer.C

index e4ad465cdb85420ffc0289cacd3bdb84ae5f8922..ee8956fb5bd830bfd948e9afa8f3fcca1777e0e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 785568d896b7c39815d7b0b93a0e3ff96acf3401..3ccc76df10b1385f51e3385cf786df981a330725 100644 (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);