summaryrefslogtreecommitdiff
path: root/devel/noweb/files/patch-c_modules.nw
diff options
context:
space:
mode:
Diffstat (limited to 'devel/noweb/files/patch-c_modules.nw')
-rw-r--r--devel/noweb/files/patch-c_modules.nw21
1 files changed, 0 insertions, 21 deletions
diff --git a/devel/noweb/files/patch-c_modules.nw b/devel/noweb/files/patch-c_modules.nw
deleted file mode 100644
index 801659417a00..000000000000
--- a/devel/noweb/files/patch-c_modules.nw
+++ /dev/null
@@ -1,21 +0,0 @@
---- c/modules.nw.orig 2006-06-12 21:03:54 UTC
-+++ c/modules.nw
-@@ -197,11 +197,17 @@ would be done above for a string of leng
- out as a special case.
- This change probably blows the case where the module being expanded is
- empty.
-+
-+If the lookup fails then the module (or chunk) is an undefined name.
-+We complain about it but want to output the original source.
-+We just wrap it in the bogus chunk name in the angle brackets
-+that it must have had in the input and output it. (Tim Daly Nov 13, 2002)
- <<expand a module>>=
- newmod = lookup(p->contents);
- if (newmod==NULL) {
-- errormsg (Error, "undefined chunk name: @<<%s@>>", p->contents);
-+ errormsg (Error, "ignoring undefined chunk name: @<<%s@>>", p->contents);
- error=Error;
-+ printf("@<<%s@>>",p->contents);
- } else {
- int retcode;
- if (*locformat == 0 && partial_distance == 0) {