From: Richard Heck Date: Fri, 5 Nov 2010 16:43:30 +0000 (+0000) Subject: Just a bit of safety here. X-Git-Tag: 2.0.0~1992 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6cc1d31e38a0ab59d8e1ac3c20dd8d9dca554fbe;p=features.git Just a bit of safety here. This 0 default for end is wrong. You should be able to do: find_token(lines, token, 0, 0) and have that return -1. As it is, this is equivalent to: find_token(lines, token, 0, len(lines)) But I am afraid to change the default, in case something in lyx_1.2.py relies upon it somehow. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36125 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/parser_tools.py b/lib/lyx2lyx/parser_tools.py index f895cc3982..6cc5c35e9c 100644 --- a/lib/lyx2lyx/parser_tools.py +++ b/lib/lyx2lyx/parser_tools.py @@ -128,7 +128,7 @@ def find_tokens(lines, tokens, start, end = 0, exact = False): the first element, in lines[start, end]. Return -1 on failure.""" - if end == 0: + if end == 0 or end > len(lines): end = len(lines) for i in xrange(start, end): @@ -158,7 +158,7 @@ def find_re(lines, rexp, start, end = 0): Return -1 on failure.""" - if end == 0: + if end == 0 or end > len(lines): end = len(lines) for i in xrange(start, end): if rexp.match(lines[i]):