diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-06 16:49:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-06 16:49:06 +0000 |
commit | a9ade930da83b03f41d1d677f715cdda2ccc9524 (patch) | |
tree | cd0018d87856e7330018b46ef7ffd52ebfb40531 /src | |
parent | 0fe4a20891531648efc6f078ba7b06fd53fe8f4f (diff) | |
download | postgresql-a9ade930da83b03f41d1d677f715cdda2ccc9524.tar.gz postgresql-a9ade930da83b03f41d1d677f715cdda2ccc9524.zip |
Sort help file names, from Peter Eisentraut
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/create_help.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/create_help.pl b/src/bin/psql/create_help.pl index c877a8d1d42..c5b0d868065 100644 --- a/src/bin/psql/create_help.pl +++ b/src/bin/psql/create_help.pl @@ -46,7 +46,7 @@ struct _helpStruct static struct _helpStruct QL_HELP[] = { "; -foreach $file (readdir DIR) { +foreach $file (sort readdir DIR) { my ($cmdname, $cmddesc, $cmdsynopsis); $file =~ /\.sgml$/ || next; |