]> git.lyx.org Git - features.git/commitdiff
fix typo
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 17 Aug 2001 17:41:38 +0000 (17:41 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 17 Aug 2001 17:41:38 +0000 (17:41 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2541 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/math_parser.C

index 7115697cc59e12ec512717aad56e8747d9ae7331..fc156b7a1f7f5cb0a7af041acb4d6da61d3b17f1 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
+
+       * math_parser.C (tokenize): fix typo
+
 2001-08-17  André Pönitz  <poenitz@gmx.net>
 
        * math_parser.C: new "lexxer"
index e14ff3dcc88211265eef5f74ef21e21a255f2248..0225ed3ea2d759f05fa0652ee73dc34c42f3f821 100644 (file)
@@ -392,7 +392,7 @@ void Parser::tokenize(string const & buffer)
                init_done = true;
        }
 
-       istringstream is(buffer, ios::in || ios::binary);
+       istringstream is(buffer, ios::in | ios::binary);
 
        char c;
        while (is.get(c)) {