hgext/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Mon, 04 May 2015 09:54:01 +0900
branchstable
changeset 24948 db7463aa080f
parent 1360 7d439981bec4
child 28450 155e3308289c
permissions -rw-r--r--
templater: do not process \-escapes at parsestring() (issue4290) This patch brings back pre-2.8.1 behavior. The result of parsestring() is stored in templater's cache, t.cache, and then it is parsed as a template string by compiletemplate(). So t.cache should keep an unparsed string no matter if it is sourced from config value. Otherwise backslashes would be processed twice. The test vector is borrowed from 64b4f0cd7336.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1360
7d439981bec4 Re-add hgext/__init__.py
Matt Mackall <mpm@selenic.com>
parents:
diff changeset
     1
# placeholder