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-4e853560f5c4b240be7562530b53851e2c7a246f.tar.gz
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 {
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 $