diff options
author | unknown <paul@ice.snake.net> | 2004-10-15 23:22:11 -0500 |
---|---|---|
committer | unknown <paul@ice.snake.net> | 2004-10-15 23:22:11 -0500 |
commit | cb8f0d59c696d19e9554d01f4d8c7a460fbf9bf9 (patch) | |
tree | 49620acb591bfc8ec81e55d6bca0362dc25a0e1a /Docs | |
parent | a750003f574abd30a8183efd3aced152e71ad6a7 (diff) | |
download | mariadb-git-cb8f0d59c696d19e9554d01f4d8c7a460fbf9bf9.tar.gz |
texi2html:
Change parsing of @image argument.
Docs/Support/texi2html:
Change parsing of @image argument.
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; |