mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
The attached tiny patch removes spurious carriage returns that might be
copied by the script that generates psql's help. (You can get the spurious CRs if you use a CVS client on Windows that does line end translation.) Elsewhere, the patch should be totally benign. This removes quite a number of the compile warnings I posted the other day. Andrew Dunstan
This commit is contained in:
parent
3a8cdf33aa
commit
1261fe18ff
@ -5,7 +5,7 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2000-2003, PostgreSQL Global Development Group
|
# Copyright (c) 2000-2003, PostgreSQL Global Development Group
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/bin/psql/create_help.pl,v 1.10 2003/11/29 19:52:06 pgsql Exp $
|
# $PostgreSQL: pgsql/src/bin/psql/create_help.pl,v 1.11 2004/06/11 03:56:46 momjian Exp $
|
||||||
#################################################################
|
#################################################################
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -109,7 +109,7 @@ foreach $file (sort readdir DIR) {
|
|||||||
$cmddesc =~ s/\"/\\"/g;
|
$cmddesc =~ s/\"/\\"/g;
|
||||||
|
|
||||||
$cmdsynopsis =~ s/<[^>]+>//g;
|
$cmdsynopsis =~ s/<[^>]+>//g;
|
||||||
$cmdsynopsis =~ s/\n/\\n/g;
|
$cmdsynopsis =~ s/\r?\n/\\n/g;
|
||||||
$cmdsynopsis =~ s/\"/\\"/g;
|
$cmdsynopsis =~ s/\"/\\"/g;
|
||||||
|
|
||||||
print OUT " { \"$cmdname\",\n N_(\"$cmddesc\"),\n N_(\"$cmdsynopsis\") },\n\n";
|
print OUT " { \"$cmdname\",\n N_(\"$cmddesc\"),\n N_(\"$cmdsynopsis\") },\n\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user