* lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.

From Ralf Menzel (trivial change).
This commit is contained in:
Paul Eggert 2005-05-27 22:21:44 +00:00
parent f003e6431a
commit 102586d8e0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
* lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
From Ralf Menzel (trivial change).
2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
* tests/local.at: Don't attempt to check for negated character

View File

@ -285,10 +285,10 @@ as_func_ret_failure () {
exitcode=0
AS_IF([as_func_success], [],
[exitcode=1
echo as_func_failure succeeded.])
echo as_func_success failed.])
AS_IF([as_func_failure],
[exitcode=1
echo as_func_success failed.])
echo as_func_failure succeeded.])
AS_IF([as_func_ret_success], [],
[exitcode=1
echo as_func_ret_success failed.])