"Lars J. Aas" <[EMAIL PROTECTED]> writes:
> The subject says it all. I consider it a bug.
> Is this easy to fix?
Hm, on a second thought, now that AS_MESSAGE tests whether the LOG fd
is set to output the message or not, it might be just as easy as
moving the set up of the LOG fd :)
# AS_MESSAGE(STRING, [FD = AS_MESSAGE_FD])
# ----------------------------------------
m4_define([AS_MESSAGE],
[m4_ifset([AS_MESSAGE_LOG_FD],
[{ _AS_ECHO([$as_me:__oline__: $1], [AS_MESSAGE_LOG_FD])
_AS_ECHO([$as_me: $1], [$2]);}],
[_AS_ECHO([$as_me: $1], [$2])])[]dnl
])