summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2009-02-20 20:27:47 +1300
committerMichael Kerrisk <mtk.manpages@gmail.com>2009-02-20 20:27:47 +1300
commit7c5c0494a33ab5921f7a77e911930b0de7da9f5b (patch)
treeedecd2c506be660537b2d8edeb6a6b00052cbddf
parentf2f7397a26dfaeb938d8617d3b17768cfca0126b (diff)
Removed trailing white space at end of lines
-rw-r--r--Changes12
1 files changed, 6 insertions, 6 deletions
diff --git a/Changes b/Changes
index 17fa948b0..9bfc90382 100644
--- a/Changes
+++ b/Changes
@@ -66,16 +66,16 @@ Various pages
for f in man*/*; do
awk '
/^.SH ["]SEE ALSO["]/ {
- sa=1; print "== " FILENAME " =="; print; next
+ sa=1; print "== " FILENAME " =="; print; next
}
/^\.(PP|SH)/ {
sa=0; no=0; next
}
/^\.BR/ {
if (sa==1) {
- print;
+ print;
if (no == 1)
- print "Missing comma in " FILENAME " +" FNR-1; no=0
+ print "Missing comma in " FILENAME " +" FNR-1; no=0
}
}
/^\.BR .*)$/ {
@@ -85,11 +85,11 @@ Various pages
}
/\.\\"/ {next}
/.*/ {
- if (sa==1) {
- print; next
+ if (sa==1) {
+ print; next
}
}
- ' $f;
+ ' $f;
done | fgrep 'Missing comma'
This patch fixes all the places found by the above script.