diff options
author | unknown <arjen@co3064164-a.bitbike.com> | 2001-12-07 10:53:14 +1000 |
---|---|---|
committer | unknown <arjen@co3064164-a.bitbike.com> | 2001-12-07 10:53:14 +1000 |
commit | 3f92bc1889732d2dbee8167cfb76f25d8b7d7fe7 (patch) | |
tree | 259c524f1028fe886d66841d41ed75af9c9fdb9d /Docs/Support | |
parent | 1232775e9e8f624e7ad365654e3759af5c96f743 (diff) | |
download | mariadb-git-3f92bc1889732d2dbee8167cfb76f25d8b7d7fe7.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"; |