From: Stepan Kasal Date: Thu, 6 Jan 2005 10:02:45 +0000 (+0000) Subject: fix a comment and typos X-Git-Tag: AUTOCONF-2.59c~499 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=230ad1824235a2a3134853468a45b2578bd3ce1c;p=thirdparty%2Fautoconf.git fix a comment and typos --- diff --git a/ChangeLog b/ChangeLog index 1210517a0..a735fbca4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-01-05 Stepan Kasal + + * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation. + 2005-01-05 Paul Eggert * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and @@ -2267,8 +2271,8 @@ 2003-05-22 Paolo Bonzini - * lib/m4sugar/m4sh.m4 [AS_REQUIRE]: actually use the 2nd - parameter + * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd + parameter. 2003-05-22 Akim Demaille diff --git a/lib/m4sugar/m4sugar.m4 b/lib/m4sugar/m4sugar.m4 index 785610ae0..341926e42 100644 --- a/lib/m4sugar/m4sugar.m4 +++ b/lib/m4sugar/m4sugar.m4 @@ -85,12 +85,12 @@ m4_undefine([undefine]) # Define DST as the definition of SRC. # What's the difference between: # 1. m4_copy([from], [to]) -# 2. m4_define([from], [to($@)]) -# Well, obviously 1 is more expansive in space. Maybe 2 is more expansive +# 2. m4_define([to], [from($@)]) +# Well, obviously 1 is more expensive in space. Maybe 2 is more expensive # in time, but because of the space cost of 1, it's not that obvious. # Nevertheless, one huge difference is the handling of `$0'. If `from' # uses `$0', then with 1, `to''s `$0' is `to', while it is `from' in 2. -# The user will certainly prefer see `from'. +# The user will certainly prefer to see `to'. m4_define([m4_copy], [m4_define([$2], m4_defn([$1]))])