diff options
author | Matt Kraai | 2001-04-10 00:00:05 +0000 |
---|---|---|
committer | Matt Kraai | 2001-04-10 00:00:05 +0000 |
commit | 4e853560f5c4b240be7562530b53851e2c7a246f (patch) | |
tree | 85a0f11eccbac035e2141ff21f86409c267f0407 /docs/autodocifier.pl | |
parent | 2f2da90fd45dc628cecbcf2f545070f89165af55 (diff) | |
download | busybox-4e853560f5c4b240be7562530b53851e2c7a246f.zip busybox-4e853560f5c4b240be7562530b53851e2c7a246f.tar.gz |
Fix double quote handling.
Diffstat (limited to 'docs/autodocifier.pl')
-rwxr-xr-x | docs/autodocifier.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index 9133afb..2bf7cd8 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -27,8 +27,8 @@ sub beautify { my @line = split("\n", $text); $text = join('', map { - s/^\s*//; - s/"//g; + s/^\s*"//; + s/"\s*$//; s/%/%%/g; s/\$/\\\$/g; eval qq[ sprintf(qq{$_}) ] @@ -275,4 +275,4 @@ John BEPPU <beppu@lineo.com> =cut -# $Id: autodocifier.pl,v 1.19 2001/04/05 20:03:33 beppu Exp $ +# $Id: autodocifier.pl,v 1.20 2001/04/10 00:00:05 kraai Exp $ |