summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-14 20:07:03 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-14 20:07:03 +0000
commitfb802f8d2d58b92fd8f47137f8b29cb3970441f3 (patch)
treef2ab8ab2a95816742a9b364aa3d68f824036f900 /doc
parent0017d477fca613825981de879b2bd219bef177c5 (diff)
* Apply patch from Ethan to improve an error message that should never
happen.
Diffstat (limited to 'doc')
-rw-r--r--doc/patchqueue/better_error_in_srcfile.mdwn17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/patchqueue/better_error_in_srcfile.mdwn b/doc/patchqueue/better_error_in_srcfile.mdwn
deleted file mode 100644
index 07cfd5ec0..000000000
--- a/doc/patchqueue/better_error_in_srcfile.mdwn
+++ /dev/null
@@ -1,17 +0,0 @@
-Just a one-liner patch to make srcfile more descriptive when it fails. --Ethan
-
-<pre>
-Index: IkiWiki.pm
-===================================================================
---- IkiWiki.pm (revision 3194)
-+++ IkiWiki.pm (working copy)
-@@ -247,7 +247,7 @@
-
- return "$config{srcdir}/$file" if -e "$config{srcdir}/$file";
- return "$config{underlaydir}/$file" if -e "$config{underlaydir}/$file";
-- error("internal error: $file cannot be found");
-+ error("internal error: $file cannot be found in $config{srcdir} or $config{underlaydir}");
- } #}}}
-
- sub readfile ($;$$) { #{{{
-</pre> \ No newline at end of file