+2005-01-05 Stepan Kasal <kasal@ucw.cz>
+
+ * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
+
2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
* lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
2003-05-22 Paolo Bonzini <bonzini@gnu.org>
- * 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 <akim@epita.fr>
# 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]))])