]> Savannah Git Hosting - gnulib.git/commitdiff
test-framework-sh: fix spelling typo
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 Jan 2024 16:36:51 +0000 (08:36 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 15 Jan 2024 16:36:51 +0000 (08:36 -0800)
* tests/init.sh (setup_): Name local var consistently with
elsewhere in Gnulib, fixing a typo.

ChangeLog
tests/init.sh

index 564a5c9a83f77356af66f7bacf4caf96b1a8dd98..d3a7f4cb3a0dc88cf43348976b4c07000b5b021a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-01-15  Paul Eggert  <eggert@cs.ucla.edu>
+
+       test-framework-sh: fix spelling typo
+       * tests/init.sh (setup_): Name local var consistently with
+       elsewhere in Gnulib, fixing a typo.
+
 2024-01-15  Bruno Haible  <bruno@clisp.org>
 
        test-framework-sh: Improve portability to native Windows and OS/2.
index 05b35cad98fd26e1e683f3f2ad0c06c81ac62346..1e15636c63042ad27fba641c17f6de99569eb0a3 100644 (file)
@@ -434,7 +434,7 @@ setup_ ()
 
   # Remove relative and non-accessible directories from PATH, including '.'
   # and Zero-length entries.
-  saved_IFS="$IFS"; IFS="$PATH_SEPARATOR"
+  save_IFS="$IFS"; IFS="$PATH_SEPARATOR"
   new_PATH=
   for dir in $PATH; do
     IFS="$save_IFS"
@@ -445,7 +445,7 @@ setup_ ()
         ;;
     esac
   done
-  IFS="$saved_IFS"
+  IFS="$save_IFS"
   PATH="$new_PATH"
   export PATH
 }