From 7c5c0494a33ab5921f7a77e911930b0de7da9f5b Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Fri, 20 Feb 2009 20:27:47 +1300 Subject: [PATCH] Removed trailing white space at end of lines --- Changes | 12 ++++++------ 1 file 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.