numerous minor changes to either use the sep function instead of old name of 'line...
[feisty_meow.git] / scripts / rev_control / version_control.sh
index 068bd66d3e3034091dc68d975e300baf8e18c61b..b6ab0217f6f3c7f1001723841c27e4e0cbad9417 100644 (file)
@@ -193,12 +193,12 @@ function checkin_list()
 function squash_first_few_crs()
 {
   i=0
-  while read line; do
+  while read input_text; do
     i=$((i+1))
     if [ $i -le 5 ]; then
-      echo -n "$line  "
+      echo -n "$input_text  "
     else
-      echo $line
+      echo $input_text
     fi
   done
   if [ $i -le 3 ]; then