diff options
Diffstat (limited to 'doc/user/scanners.in')
-rw-r--r-- | doc/user/scanners.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/scanners.in b/doc/user/scanners.in index a0029ef..63c0722 100644 --- a/doc/user/scanners.in +++ b/doc/user/scanners.in @@ -167,7 +167,7 @@ over the file scanning rather than being called for each input line: <programlisting> import re - include_re = re.compile(r'^include\\s+(\\S+)$', re.M) + include_re = re.compile(r'^include\s+(\S+)$', re.M) def kfile_scan(node, env, path, arg): contents = node.get_contents() @@ -278,7 +278,7 @@ over the file scanning rather than being called for each input line: <file name="SConstruct" printme="1"> import re - include_re = re.compile(r'^include\\s+(\\S+)$', re.M) + include_re = re.compile(r'^include\s+(\S+)$', re.M) def kfile_scan(node, env, path): contents = node.get_contents() |