At Saturday 03 July 2010, Eric Blake wrote: > Copy-and-paste leftovers. The second set of assignments is not > needed, and a patch to delete that line would be fine with me. > Done in the attached patch, tested with: $ make && cd tests && make testsuite && ./testsuite -k AS_TR_SH. The test "94: AS_TR_SH and AS_TR_CPP" was run, and passed. > I'm about to head on vacation for two weeks, so I will not be > pushing the patch for this particular issue until after then (I'm > hoping that I can solve the more important problems with AC_SIZEOF > before I head out). ACK.
Regards, Stefano
From 29c000465bf9ac10bb965570e9f732626c61208b Mon Sep 17 00:00:00 2001 From: Stefano Lattarini <[email protected]> Date: Sat, 3 Jul 2010 22:41:03 +0200 Subject: [PATCH] Fix minor copy&paste leftover in m4sh tests. * tests/m4sh.at (AS@&t...@_tr_sh and AS@&t...@_tr_cpp): Remove useless variables assignements ($var, $vAr, $VAR). --- ChangeLog | 6 ++++++ tests/m4sh.at | 1 - 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index ac17d8c..aaaa881 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-07-03 Stefano Lattarini <[email protected]> + + Fix minor copy&paste leftover in m4sh tests. + * tests/m4sh.at (AS@&t...@_tr_sh and AS@&t...@_tr_cpp): Remove + useless variables assignements ($var, $vAr, $VAR). + 2010-07-02 Eric Blake <[email protected]> Post-release administrivia. diff --git a/tests/m4sh.at b/tests/m4sh.at index 96a2acb..2f79332 100644 --- a/tests/m4sh.at +++ b/tests/m4sh.at @@ -1194,7 +1194,6 @@ echo AS_TR_CPP($var) AS_TR_CPP($vAr) AS_TR_CPP($VAR) echo AS_TR_CPP([$var]) AS_TR_CPP([$vAr]) AS_TR_CPP([$VAR]) echo AS_TR_CPP([[$var]]) AS_TR_CPP([[$vAr]]) AS_TR_CPP([[$VAR]]) echo === -var=abc vAr=aBc VAR=ABC echo AS_TR_SH(`echo abc`) AS_TR_SH(`echo aBc`) AS_TR_SH(`echo ABC`) echo AS_TR_SH([`echo abc`]) AS_TR_SH([`echo aBc`]) AS_TR_SH([`echo ABC`]) echo AS_TR_SH([[`echo abc`]]) AS_TR_SH([[`echo aBc`]]) AS_TR_SH([[`echo ABC`]]) -- 1.6.5
