1Nested quoted block 2========================================================== 3 4Various Autoconf language objects inside m4 quote quote blocks are not 5tagged well. 6 7 8For example `USE_STDBOOL_H` in the following code snippet is not tagged. 9 10.. code-block:: m4 11 12 AC_CHECK_HEADERS([stdbool.h], 13 [ 14 AC_DEFINE([USE_STDBOOL_H]) 15 ]) 16