mirror of
https://github.com/postgres/postgres.git
synced 2025-11-22 12:22:45 +03:00
perltidy: Add option --nooutdent-long-quotes
This commit is contained in:
@@ -120,7 +120,7 @@ open my $tfh, '>', $tabfile . $tmpext
|
||||
or die "Could not open $tabfile$tmpext: $!";
|
||||
|
||||
print $ofh
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
*
|
||||
* fmgroids.h
|
||||
* Macros that define the OIDs of built-in functions.
|
||||
@@ -157,7 +157,7 @@ qq|/*-------------------------------------------------------------------------
|
||||
|;
|
||||
|
||||
print $pfh
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
*
|
||||
* fmgrprotos.h
|
||||
* Prototypes for built-in functions.
|
||||
@@ -183,7 +183,7 @@ qq|/*-------------------------------------------------------------------------
|
||||
|;
|
||||
|
||||
print $tfh
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
qq|/*-------------------------------------------------------------------------
|
||||
*
|
||||
* fmgrtab.c
|
||||
* The function manager's table of internal functions.
|
||||
@@ -230,7 +230,7 @@ my $fmgr_count = 0;
|
||||
foreach my $s (sort { $a->{oid} <=> $b->{oid} } @fmgr)
|
||||
{
|
||||
print $tfh
|
||||
" { $s->{oid}, \"$s->{prosrc}\", $s->{nargs}, $bmap{$s->{strict}}, $bmap{$s->{retset}}, $s->{prosrc} }";
|
||||
" { $s->{oid}, \"$s->{prosrc}\", $s->{nargs}, $bmap{$s->{strict}}, $bmap{$s->{retset}}, $s->{prosrc} }";
|
||||
|
||||
$fmgr_builtin_oid_index[ $s->{oid} ] = $fmgr_count++;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user