* tests/init.sh (setup_): Name local var consistently with
elsewhere in Gnulib, fixing a typo.
+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.
# 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"
;;
esac
done
- IFS="$saved_IFS"
+ IFS="$save_IFS"
PATH="$new_PATH"
export PATH
}