diff options
Diffstat (limited to 'doc/user/scanners.sgml')
-rw-r--r-- | doc/user/scanners.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/scanners.sgml b/doc/user/scanners.sgml index b4756c5..c068d03 100644 --- a/doc/user/scanners.sgml +++ b/doc/user/scanners.sgml @@ -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() @@ -277,7 +277,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): contents = node.get_contents() |