xref: /Universal-ctags/Units/parser-autoconf.r/nested-block.ac.b/DESC.rst (revision 3261ddc70ce5bb6ad632905931861b270da9dcd1)
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