summaryrefslogtreecommitdiff
path: root/scripts/fill_help_tables.sh
diff options
context:
space:
mode:
authorpaul@ice.snake.net <>2004-11-12 08:45:58 -0600
committerpaul@ice.snake.net <>2004-11-12 08:45:58 -0600
commit1288f453cc834ba5cf432282ae054a2d69efcf71 (patch)
tree568191b80840e24d7bb37696b3371755a0103782 /scripts/fill_help_tables.sh
parentd927503a9670bef6d8435428013c0f8e08e8d221 (diff)
downloadmariadb-git-1288f453cc834ba5cf432282ae054a2d69efcf71.tar.gz
fill_help_tables.sh:
Recognize another Texinfo tag.
Diffstat (limited to 'scripts/fill_help_tables.sh')
-rw-r--r--scripts/fill_help_tables.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/fill_help_tables.sh b/scripts/fill_help_tables.sh
index 1f44e9fa488..78dfe7b6088 100644
--- a/scripts/fill_help_tables.sh
+++ b/scripts/fill_help_tables.sh
@@ -198,6 +198,7 @@ sub prepare_name
$a =~ s/(\@tab)/\t/g;
$a =~ s/\@item/ /g;
$a =~ s/\@minus\{\}/-/g;
+ $a =~ s/\@dots\{\}/.../g;
$a =~ s/\@var\{((.|\n)+?)\}/$1/go;
$a =~ s/\@command\{((.|\n)+?)\}/$1/go;
$a =~ s/\@code\{((.|\n)+?)\}/$1/go;
@@ -248,6 +249,7 @@ sub prepare_description
$a =~ s/(\@tindex\s(.*?)\n)//g;
$a =~ s/(\@c\s(.*?)\n)//g;
$a =~ s/\@minus\{\}/-/g;
+ $a =~ s/\@dots\{\}/.../g;
$a =~ s/\@var\{((.|\n)+?)\}/$1/go;
$a =~ s/\@command\{((.|\n)+?)\}/$1/go;
$a =~ s/\@code\{((.|\n)+?)\}/$1/go;
@@ -280,6 +282,7 @@ sub prepare_example
$a =~ s/(^\@c for_help_topic(.*?)\n)//g;
$a =~ s/\@var\{((.|\n)+?)\}/$1/go;
+ $a =~ s/\@dots\{\}/.../g;
$a =~ s/\\/\\\\/g;
$a =~ s/(\@{)/{/g;
$a =~ s/(\@})/}/g;