From: Lars Gullik Bjønnes Date: Fri, 17 Aug 2001 17:41:38 +0000 (+0000) Subject: fix typo X-Git-Tag: 1.6.10~20804 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=07a0f43eee47274e93693cd47f55c254dcdabd2a;p=features.git fix typo git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2541 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 7115697cc5..fc156b7a1f 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,7 @@ +2001-08-17 Lars Gullik Bjønnes + + * math_parser.C (tokenize): fix typo + 2001-08-17 André Pönitz * math_parser.C: new "lexxer" diff --git a/src/mathed/math_parser.C b/src/mathed/math_parser.C index e14ff3dcc8..0225ed3ea2 100644 --- a/src/mathed/math_parser.C +++ b/src/mathed/math_parser.C @@ -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)) {