--- a/mercurial/templater.py Mon Apr 08 09:44:26 2013 -0700
+++ b/mercurial/templater.py Sun Apr 07 23:25:50 2013 -0700
@@ -66,7 +66,10 @@
break
pos += 1
sym = program[s:pos]
- yield ('symbol', sym, s)
+ try:
+ yield('string', str(int(sym)), s)
+ except ValueError:
+ yield ('symbol', sym, s)
pos -= 1
elif c == '}':
pos += 1
--- a/tests/test-command-template.t Mon Apr 08 09:44:26 2013 -0700
+++ b/tests/test-command-template.t Sun Apr 07 23:25:50 2013 -0700
@@ -1360,6 +1360,12 @@
$ hg log -l1 --template '{date|age}\n'
7 years from now
+Filter with int function argument:
+
+ $ hg log --template '{fill(author, 20)}\n' -r 0
+ User Name
+ <user@hostname>
+
Error on syntax:
$ echo 'x = "f' >> t