|  21.4.1 Discarding input 
A macro called dnldiscards text from the input.  Thednlmacro takes no arguments and expands to the empty string, but it has the
side effect of discarding all input up to and including the next newline
character.  Here is an example ofdnlfrom the Autoconf source
code: 
 |  | 
 # AC_LANG_POP
# -----------
# Restore the previous language.
define([AC_LANG_POP],
[popdef([_AC_LANG])dnl
ifelse(_AC_LANG, [_AC_LANG],
        [AC_FATAL([too many $0])])dnl
AC_LANG(_AC_LANG)])
 | 
 
It is important to remember dnl's behavior: it discards the
newline character, which can have unexpected effects on generated
`configure' scripts!  If you want a newline to appear in the
output, you must add an extra blank line to compensate. 
dnlneed not appear in the first column of a given line -- it
will begin discarding input at any point that it is invoked in the input
file.  However, be aware of the newline eating problem again!  In the example
ofAC_TRY_LINK_FUNCabove, note the deliberate use ofdnlto remove surplus newline characters. 
In general, dnlmakes sense for macro invocations that appear on
a single line, where you would expect the whole line to simply vanish
from the output.  In the following subsections,dnlwill be used
to illustrate where it makes sense to use it. 
 |