diff options
author | unknown <paul@kite-hub.kitebird.com> | 2004-10-15 10:28:39 -0500 |
---|---|---|
committer | unknown <paul@kite-hub.kitebird.com> | 2004-10-15 10:28:39 -0500 |
commit | 6f9e30d065929eee84c807ef4f01a6757e3540a5 (patch) | |
tree | e8ddcfa6fa348c0df6502e9a5632102fc391a170 /Docs | |
parent | deed55179489668c169d0fa0554e8507acf57699 (diff) | |
download | mariadb-git-6f9e30d065929eee84c807ef4f01a6757e3540a5.tar.gz |
texi2html:
Change @image argument parsing.
Docs/Support/texi2html:
Change @image argument parsing.
Diffstat (limited to 'Docs')
-rwxr-xr-x | Docs/Support/texi2html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/Support/texi2html b/Docs/Support/texi2html index 5dda7c8bbd5..8067d8f72ce 100755 --- a/Docs/Support/texi2html +++ b/Docs/Support/texi2html @@ -1811,7 +1811,7 @@ sub fix_image { my($text) = @_; my($arg1, $ext); - $text =~ /^([^,]*)$/; + $text =~ /^([^,]*)/; die "error in image: '$text'" unless defined($1); $arg1 = $1; $arg1 =~ s/@@/@/g; |