aboutsummaryrefslogtreecommitdiff
path: root/docs/autodocifier.pl
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-10 00:00:05 +0000
committerMatt Kraai <kraai@debian.org>2001-04-10 00:00:05 +0000
commit4e853560f5c4b240be7562530b53851e2c7a246f (patch)
tree85a0f11eccbac035e2141ff21f86409c267f0407 /docs/autodocifier.pl
parent2f2da90fd45dc628cecbcf2f545070f89165af55 (diff)
downloadbusybox-w32-4e853560f5c4b240be7562530b53851e2c7a246f.tar.gz
busybox-w32-4e853560f5c4b240be7562530b53851e2c7a246f.tar.bz2
busybox-w32-4e853560f5c4b240be7562530b53851e2c7a246f.zip
Fix double quote handling.
Diffstat (limited to 'docs/autodocifier.pl')
-rwxr-xr-xdocs/autodocifier.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl
index 9133afb98..2bf7cd8a1 100755
--- a/docs/autodocifier.pl
+++ b/docs/autodocifier.pl
@@ -27,8 +27,8 @@ sub beautify {
27 my @line = split("\n", $text); 27 my @line = split("\n", $text);
28 $text = join('', 28 $text = join('',
29 map { 29 map {
30 s/^\s*//; 30 s/^\s*"//;
31 s/"//g; 31 s/"\s*$//;
32 s/%/%%/g; 32 s/%/%%/g;
33 s/\$/\\\$/g; 33 s/\$/\\\$/g;
34 eval qq[ sprintf(qq{$_}) ] 34 eval qq[ sprintf(qq{$_}) ]
@@ -275,4 +275,4 @@ John BEPPU <beppu@lineo.com>
275 275
276=cut 276=cut
277 277
278# $Id: autodocifier.pl,v 1.19 2001/04/05 20:03:33 beppu Exp $ 278# $Id: autodocifier.pl,v 1.20 2001/04/10 00:00:05 kraai Exp $