Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
24980272
Commit
24980272
authored
Jun 28, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change awk ~ pattern from "" to //.
Remove extra backslash in pattern. Luke Lonergan
parent
6561372c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
26 deletions
+26
-26
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+26
-26
No files found.
src/tools/pgindent/pgindent
View file @
24980272
...
...
@@ -50,13 +50,13 @@ do
if (NR >= 2)
print line1;
if (NR >= 2 &&
line2 ~
"^{[ ]*$"
&&
line1 !~
"^struct"
&&
line1 !~
"^enum"
&&
line1 !~
"^typedef"
&&
line1 !~
"^extern[ ][ ]*\"C\""
&&
line1 !~
"="
&&
line1 ~
"\)"
)
line2 ~
/^{[ ]*$/
&&
line1 !~
/^struct/
&&
line1 !~
/^enum/
&&
line1 !~
/^typedef/
&&
line1 !~
/^extern[ ][ ]*"C"/
&&
line1 !~
/=/
&&
line1 ~
/)/
)
print "int pgindent_func_no_var_fix;";
line1 = line2;
}
...
...
@@ -70,8 +70,8 @@ do
line2 = $0;
if (skips > 0)
skips--;
if (line1 ~
"^#ifdef[ ]*__cplusplus"
&&
line2 ~
"^extern[ ]*\"C\"[ ]*$"
)
if (line1 ~
/^#ifdef[ ]*__cplusplus/
&&
line2 ~
/^extern[ ]*"C"[ ]*$/
)
{
print line1;
print line2;
...
...
@@ -81,8 +81,8 @@ do
line2 = "";
skips = 2;
}
else if (line1 ~
"^#ifdef[ ]*__cplusplus"
&&
line2 ~
"^}[ ]*$"
)
else if (line1 ~
/^#ifdef[ ]*__cplusplus/
&&
line2 ~
/^}[ ]*$/
)
{
print line1;
print "/* Close extern \"C\" */";
...
...
@@ -1732,7 +1732,7 @@ do
# work around misindenting of function with no variables defined
awk
'
{
if ($0 ~
"^[ ]*int[ ]*pgindent_func_no_var_fix;"
)
if ($0 ~
/^[ ]*int[ ]*pgindent_func_no_var_fix;/
)
{
if (getline && $0 != "")
print $0;
...
...
@@ -1751,9 +1751,9 @@ do
# line3 = $0;
# if (skips > 0)
# skips--;
# if (line1 ~
" *{$"
&&
# line2 ~
" *[^;{}]*;$"
&&
# line3 ~
" *}$"
)
# if (line1 ~
/ *{$/
&&
# line2 ~
/ *[^;{}]*;$/
&&
# line3 ~
/ *}$/
)
# {
# print line2;
# line2 = "";
...
...
@@ -1778,9 +1778,9 @@ do
line3 = $0;
if (skips > 0)
skips--;
if (line1 ~
" *{$"
&&
line2 ~
"^$"
&&
line3 ~
" */\\*$"
)
if (line1 ~
/ *{$/
&&
line2 ~
/^$/
&&
line3 ~
/ *\/\*$/
)
{
print line1;
print line3;
...
...
@@ -1819,8 +1819,8 @@ do
line2 = $0;
if (skips > 0)
skips--;
if (line1 ~
"^$"
&&
line2 ~
"^#endif"
)
if (line1 ~
/^$/
&&
line2 ~
/^#endif/
)
{
print line2;
line2 = "";
...
...
@@ -1844,7 +1844,7 @@ do
line1 = line2;
}
END {
if (NR >= 1 && line2 ~
"^#endif"
)
if (NR >= 1 && line2 ~
/^#endif/
)
printf "\n";
print line1;
}'
|
...
...
@@ -1853,16 +1853,16 @@ do
# like real functions.
awk
' BEGIN {paren_level = 0}
{
if ($0 ~ /^[a-zA-Z_][a-zA-Z_0-9]*[^
\
(]*$/)
if ($0 ~ /^[a-zA-Z_][a-zA-Z_0-9]*[^(]*$/)
{
saved_len = 0;
saved_lines[++saved_len] = $0;
if ((getline saved_lines[++saved_len]) == 0)
print saved_lines[1];
else
if (saved_lines[saved_len] !~ /^[a-zA-Z_][a-zA-Z_0-9]*
\
(/ ||
saved_lines[saved_len] ~ /^[a-zA-Z_][a-zA-Z_0-9]*
\(.*\
)$/ ||
saved_lines[saved_len] ~ /^[a-zA-Z_][a-zA-Z_0-9]*
\(.*\
);$/)
if (saved_lines[saved_len] !~ /^[a-zA-Z_][a-zA-Z_0-9]*(/ ||
saved_lines[saved_len] ~ /^[a-zA-Z_][a-zA-Z_0-9]*
(.*
)$/ ||
saved_lines[saved_len] ~ /^[a-zA-Z_][a-zA-Z_0-9]*
(.*
);$/)
{
print saved_lines[1];
print saved_lines[2];
...
...
@@ -1879,7 +1879,7 @@ do
}
for (i=1; i <= saved_len; i++)
{
if (i == 1 && saved_lines[saved_len] ~ /
\
);$/)
if (i == 1 && saved_lines[saved_len] ~ /);$/)
{
printf "%s", saved_lines[i];
if (substr(saved_lines[i], length(saved_lines[i]),1) != "*")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment