From: Claudio Sacerdoti Coen Date: Tue, 3 Oct 2006 12:15:00 +0000 (+0000) Subject: Regular expression fixed to allow '-' into test names. X-Git-Tag: 0.4.95@7852~940 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=e480ed0d9242f2e505cf28e175262c841bc470c2;p=helm.git Regular expression fixed to allow '-' into test names. --- diff --git a/matita/scripts/functions.lua b/matita/scripts/functions.lua index d30988530..e6935fb5c 100755 --- a/matita/scripts/functions.lua +++ b/matita/scripts/functions.lua @@ -1,7 +1,7 @@ #!/usr/bin/lua5.1 local tool_re = "^([%w%.]+)" -local test_re = "([%w%./_]+)" +local test_re = "([%w%./_-]+)" local rc_re = string.char(27).."%[%d+;%d+m([%a]+)"..string.char(27).."%[0m" local time_re = "(%d+m%d+%.%d+s)" local mark_re = "(%d+)"