readdate: Show the start and finish of the consumed section of the input

Sun, 21 Jun 2009 23:20:40 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 21 Jun 2009 23:20:40 +0100
changeset 19
0cdb35f96cb6
parent 18
d6f0c12c152a
child 20
1db3ee8b9bc3

readdate: Show the start and finish of the consumed section of the input

readdate.lua file | annotate | diff | comparison | revisions
--- a/readdate.lua	Sun Jun 21 23:19:56 2009 +0100
+++ b/readdate.lua	Sun Jun 21 23:20:40 2009 +0100
@@ -13,7 +13,7 @@
 		if start and finish then
 			remaining = (line:sub(1, start)..line:sub(finish, -1)):gsub("^[%s%p]+", ""):gsub("[%s%p]+$", "");
 		end
-		print(os.date("%c", ret).." ("..ret..")"..((#remaining>0 and (": "..remaining)) or ""));
+		print(os.date("%c", ret).." ("..ret..")"..((#remaining>0 and (": "..remaining)) or "").." ["..start..","..finish.."]");
 	end
 end
 

mercurial