diff options
author | arjen@co3064164-a.bitbike.com <> | 2001-12-07 10:53:14 +1000 |
---|---|---|
committer | arjen@co3064164-a.bitbike.com <> | 2001-12-07 10:53:14 +1000 |
commit | 2b69df40c35b3a55615c2d3b98c508cb46471f8e (patch) | |
tree | 259c524f1028fe886d66841d41ed75af9c9fdb9d /Docs/Support | |
parent | eb961ab0d87eef50ec897128b10e40101a47772f (diff) | |
download | mariadb-git-2b69df40c35b3a55615c2d3b98c508cb46471f8e.tar.gz |
Added column headers for @multitable (O'Reilly fixup).
Diffstat (limited to 'Docs/Support')
-rwxr-xr-x | Docs/Support/update-reserved-words.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Docs/Support/update-reserved-words.pl b/Docs/Support/update-reserved-words.pl index aeaa7471751..e7f8329009e 100755 --- a/Docs/Support/update-reserved-words.pl +++ b/Docs/Support/update-reserved-words.pl @@ -3,6 +3,7 @@ # Based on a Emacs macro by david@mysql.com # Implemented in Perl by jeremy@mysql.com # 2001-11-20 Fixups by arjen@mysql.com, 2 keywords and 15 synonyms were missing +# 2001-12-07 Fixup by arjen@mysql.com, add column headings for multitable. print STDERR "Scanning lex.h for symbols..\n"; open LEX, "<../sql/lex.h"; @@ -54,6 +55,7 @@ while(($line = <OLD>) !~ /START_OF_RESERVED_WORDS/) { print NEW $line; }; print NEW "\@c START_OF_RESERVED_WORDS\n\n"; print STDERR "Inserting list of reserved words...\n"; print NEW "\@multitable \@columnfractions .25 .25 .25 .25\n"; +print NEW "\@item \@strong{Word} \@tab \@strong{Word} \@tab \@strong{Word} \@tab \@strong{Word}\n"; print NEW $list; print NEW "\@end multitable\n"; print STDERR "Skipping over old list...\n"; |