Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
4fe3c607
Commit
4fe3c607
authored
18 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Apply checkSpace.pl to checkSpace.pl.
svn:r6901
parent
fc9ed724
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/checkSpace.pl
+38
-36
38 additions, 36 deletions
contrib/checkSpace.pl
with
38 additions
and
36 deletions
contrib/checkSpace.pl
+
38
−
36
View file @
4fe3c607
...
...
@@ -11,23 +11,23 @@ for $fn (@ARGV) {
$lastnil
=
0
;
$incomment
=
0
;
while
(
<
F
>
)
{
## Warn about windows-style newlines.
## Warn about windows-style newlines.
if
(
/\r/
)
{
print
"
CR:
$fn
:$.
\n
";
}
## Warn about tabs.
## Warn about tabs.
if
(
/\t/
)
{
print
"
TAB:
$fn
:$.
\n
";
}
## Warn about trailing whitespace.
## Warn about trailing whitespace.
if
(
/ +$/
)
{
print
"
Space
\@
EOL:
$fn
:$.
\n
";
}
## Warn about control keywords without following space.
if
(
$C
&&
/\s(?:if|while|for|switch)\(/
)
{
print
"
KW(:
$fn
:$.
\n
";
}
## Warn about multiple empty lines.
## Warn about control keywords without following space.
if
(
$C
&&
/\s(?:if|while|for|switch)\(/
)
{
print
"
KW(:
$fn
:$.
\n
";
}
## Warn about multiple empty lines.
if
(
$lastnil
&&
/^$/
)
{
print
"
DoubleNL:
$fn
:$.
\n
";
}
elsif
(
/^$/
)
{
...
...
@@ -35,15 +35,15 @@ for $fn (@ARGV) {
}
else
{
$lastnil
=
0
;
}
## Terminals are still 80 columns wide in my world. I refuse to
## accept double-line lines. Except, of course, svn Id tags
## can make us go long.
if
(
/^.{80}/
&&
!
/\$Id: /
)
{
print
"
Wide:
$fn
:$.
\n
";
}
### Juju to skip over comments and strings, since the tests
### we're about to do are okay there.
if
(
$C
)
{
## Terminals are still 80 columns wide in my world. I refuse to
## accept double-line lines. Except, of course, svn Id tags
## can make us go long.
if
(
/^.{80}/
&&
!
/\$Id: /
)
{
print
"
Wide:
$fn
:$.
\n
";
}
### Juju to skip over comments and strings, since the tests
### we're about to do are okay there.
if
(
$C
)
{
if
(
$incomment
)
{
if
(
m!\*/!
)
{
s!.*?\*/!!
;
...
...
@@ -83,29 +83,30 @@ for $fn (@ARGV) {
if
(
/(\w+)\s\(/
)
{
if
(
$
1
ne
"
if
"
and
$
1
ne
"
while
"
and
$
1
ne
"
for
"
and
$
1
ne
"
switch
"
and
$
1
ne
"
return
"
and
$
1
ne
"
int
"
and
$
1
ne
"
elsif
"
and
$
1
ne
"
void
"
and
$
1
ne
"
__attribute__
")
{
print
"
fn ():
$fn
:$.
\n
";
}
}
## Warn about functions not declared at start of line.
if
(
$in_func_head
||
(
$fn
!~
/\.h$/
&&
/^[a-zA-Z0-9_]/
&&
!
/^(?:static )?(?:typedef|struct|union)[^\(]*$/
&&
!
/= *\{$/
&&
!
/;$/
))
{
if
(
/.\{$/
){
print
"
fn() {:
$fn
:$.
\n
";
$in_func_head
=
0
;
}
elsif
(
/^\S[^\(]* +\**[a-zA-Z0-9_]+\(/
)
{
$in_func_head
=
-
1
;
# started with tp fn
}
elsif
(
/;$/
)
{
$in_func_head
=
0
;
}
elsif
(
/\{/
)
{
if
(
$in_func_head
==
-
1
)
{
print
"
tp fn():
$fn
:$.
\n
";
}
$in_func_head
=
0
;
}
}
## Warn about functions not declared at start of line.
if
(
$in_func_head
||
(
$fn
!~
/\.h$/
&&
/^[a-zA-Z0-9_]/
&&
!
/^(?:static )?(?:typedef|struct|union)[^\(]*$/
&&
!
/= *\{$/
&&
!
/;$/
))
{
if
(
/.\{$/
){
print
"
fn() {:
$fn
:$.
\n
";
$in_func_head
=
0
;
}
elsif
(
/^\S[^\(]* +\**[a-zA-Z0-9_]+\(/
)
{
$in_func_head
=
-
1
;
# started with tp fn
}
elsif
(
/;$/
)
{
$in_func_head
=
0
;
}
elsif
(
/\{/
)
{
if
(
$in_func_head
==
-
1
)
{
print
"
tp fn():
$fn
:$.
\n
";
}
$in_func_head
=
0
;
}
}
}
}
if
(
!
$lastnil
)
{
...
...
@@ -113,3 +114,4 @@ for $fn (@ARGV) {
}
close
(
F
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment