diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2012-10-15 21:34:19 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2012-10-15 21:34:19 +0000 |
commit | e61f04a29c17b756e77091c0f51bafeb0190f5f0 (patch) | |
tree | b26498608221128eee254a4294ee82a86b18e45c | |
parent | 52e9a748e300c43dea6dac7243c5b3639b3b6069 (diff) | |
download | ports-e61f04a29c17b756e77091c0f51bafeb0190f5f0.tar.gz ports-e61f04a29c17b756e77091c0f51bafeb0190f5f0.zip |
Add MOVEDLint checks for some of the other formatting problems
seen in MOVED lines.
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=305939
-rwxr-xr-x | Tools/scripts/MOVEDlint.awk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/scripts/MOVEDlint.awk b/Tools/scripts/MOVEDlint.awk index e9fe943f7d0a..883becaa44a9 100755 --- a/Tools/scripts/MOVEDlint.awk +++ b/Tools/scripts/MOVEDlint.awk @@ -82,6 +82,13 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9]$/ { missing[$2] = NR else delete resurrected[$2] + +# Produces too many false positives +# if ($4 ~ /^[a-z].*/) +# printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 + + if ($4 ~ /\.$/) + printf "Final character is a dot: %5d (%s)\n", NR, $4 } END { |