vc-list-files: indent with spaces, not TABs
authorJim Meyering <meyering@redhat.com>
Fri, 29 Apr 2011 20:04:07 +0000 (22:04 +0200)
committerJim Meyering <meyering@redhat.com>
Fri, 29 Apr 2011 20:04:07 +0000 (22:04 +0200)
* build-aux/vc-list-files: Convert leading TABs to spaces,
to match the style of most other files in gnulib.

ChangeLog
build-aux/vc-list-files

index bda1204..cbd314e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-04-29  Jim Meyering  <meyering@redhat.com>
 
+       vc-list-files: indent with spaces, not TABs
+       * build-aux/vc-list-files: Convert leading TABs to spaces,
+       to match the style of most other files in gnulib.
+
        announce-gen: indent with spaces, not TABs
        * build-aux/announce-gen: Convert all TABs to spaces, to match
        the style of most other files in gnulib.
index 9bb6fe6..2fced25 100755 (executable)
@@ -2,7 +2,7 @@
 # List version-controlled file names.
 
 # Print a version string.
-scriptversion=2010-04-23.22; # UTC
+scriptversion=2011-04-29.20; # UTC
 
 # Copyright (C) 2006-2011 Free Software Foundation, Inc.
 
@@ -94,12 +94,12 @@ elif test -d CVS; then
     eval cvsu --find --types=AFGM '"$dir"' $postprocess
   else
     eval awk -F/ \''{                  \
-       if (!$1 && $3 !~ /^-/) {        \
-         f=FILENAME;                   \
-         if (f ~ /CVS\/Entries$/)      \
-           f = substr(f, 1, length(f)-11); \
-         print f $2;                   \
-       }}'\''                          \
+        if (!$1 && $3 !~ /^-/) {       \
+          f=FILENAME;                  \
+          if (f ~ /CVS\/Entries$/)     \
+            f = substr(f, 1, length(f)-11); \
+          print f $2;                  \
+        }}'\''                         \
       `find "$dir" -name Entries -print` /dev/null' $postprocess
   fi
 elif test -d .svn; then