From: Rich Bowen Date: Thu, 3 Mar 2016 01:12:33 +0000 (+0000) Subject: Fix weird indentation X-Git-Tag: 2.5.0-alpha~1965 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53ea193b9317201c8aea65c1b0e512e9cb8e8aef;p=thirdparty%2Fapache%2Fhttpd.git Fix weird indentation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1733402 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewritemap.xml b/docs/manual/rewrite/rewritemap.xml index e97f9062f36..eb36106c3f5 100644 --- a/docs/manual/rewrite/rewritemap.xml +++ b/docs/manual/rewrite/rewritemap.xml @@ -380,12 +380,12 @@ RewriteRule "-" "${d2u:%{REQUEST_URI}}"

dash2under.pl

- #!/usr/bin/perl - $| = 1; # Turn off I/O buffering - while (<STDIN>) { - s/-/_/g; # Replace dashes with underscores - print $_; - } +#!/usr/bin/perl +$| = 1; # Turn off I/O buffering +while (<STDIN>) { + s/-/_/g; # Replace dashes with underscores + print $_; +} Caution!