summaryrefslogtreecommitdiffstats
path: root/doc/user
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-05-07 21:56:43 (GMT)
committerSteven Knight <knight@baldmt.com>2005-05-07 21:56:43 (GMT)
commit074bef6dcc8d7ae0ed9f37f3e99a5078b7e408ba (patch)
tree050ca0e8f147fc0d489f206b9ddeafdebd256888 /doc/user
parent1a4e5801c5b0797fc3fc0fc5bd9a27a9794252e3 (diff)
downloadSCons-074bef6dcc8d7ae0ed9f37f3e99a5078b7e408ba.zip
SCons-074bef6dcc8d7ae0ed9f37f3e99a5078b7e408ba.tar.gz
SCons-074bef6dcc8d7ae0ed9f37f3e99a5078b7e408ba.tar.bz2
Fix a User's Guide example. (Sanjoy Mahajan)
Diffstat (limited to 'doc/user')
-rw-r--r--doc/user/scanners.in4
-rw-r--r--doc/user/scanners.sgml4
2 files changed, 4 insertions, 4 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()
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()