From 2caa734edff2a2af73689344043d24c1d9727839 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Fri, 6 Jul 2007 15:50:39 +0000 Subject: [PATCH] revert the obviously incorrect fix of rev. 19001. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19002 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/lstrings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/lstrings.cpp b/src/support/lstrings.cpp index 6c48a90ee4..8568b2f7e0 100644 --- a/src/support/lstrings.cpp +++ b/src/support/lstrings.cpp @@ -248,7 +248,7 @@ bool isAscii(docstring const & str) { int const len = str.length(); for (int i = 0; i < len; ++i) - if (static_cast(str[i]) >= 0x80) + if (str[i] >= 0x80) return false; return true; } -- 2.39.2