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
e7f47ed5
Commit
e7f47ed5
authored
May 22, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pgindent fixes for Tom, mostly indenting problems.
parent
66e9ee79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+43
-0
No files found.
src/tools/pgindent/pgindent
View file @
e7f47ed5
...
...
@@ -33,6 +33,11 @@ do
sed
's;\([} ]\)else[ ]*\(/\*.*\)$;\1else\
\2;g'
|
detab
-t4
-qc
|
# work around bug where function that defines no local variables misindents
# switch() case lines and line after #else
sed
's,^{$,{\
int pgindent_func_no_var_fix;\
,g'
|
# protect backslashes in DATA()
sed
's;^DATA(.*$;/*&*/;'
>
/tmp/
$$
a
...
...
@@ -1309,7 +1314,21 @@ do
# workaround indent bug
sed
's;^static[ ][ ]*;static ;g'
|
sed
's;^}[ ][ ]*/\*;} /*;'
|
# pull in #endif comments
sed
's;^#endif[ ][ ]*/\*;#endif /*;'
|
# add space after comments that start on tab stops
sed
's,;\(/\*.*\*/\)$,; \1,'
|
# work around #else indenting next line if #ifdef defines variables at top
# work around case misindenting function has no variables defined
awk
'
{
if ($0 ~ "^[ ]*int[ ]*pgindent_func_no_var_fix;")
{
if (getline && $0 != "")
print $0;
}
else print $0;
}'
|
detab
-t8
-qc
|
entab
-t4
-qc
|
# move trailing * in function return type
...
...
@@ -1373,6 +1392,30 @@ do
if (skips <= 2)
print line2;
}'
|
# remove blank line before #endif
awk
'
{
line2 = $0;
if (skips > 0)
skips--;
if (line1 ~ "^$" &&
line2 ~ "^#endif")
{
print line2;
line1 = "";
line2 = "";
skips = 2;
}
else
if (skips == 0 && NR >= 2)
print line1;
line1 = line2;
line2 = "";
}
END {
if (skips <= 1)
print line1;
}'
|
# Move prototype names to the same line as return type. Useful for ctags.
# Indent should do this, but it does not. It formats prototypes just
# like real functions.
...
...
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