Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > The problem is that you are explicitly requesting a level of headlines > without providing a sectioning command for them. By default > `org-texinfo-classes' stops at level 4. > > Anyway, this should be fixed. Thank you.
You did that in f99f26306c57d2342069880eac4dca324d7579ec but I think you added a off-by-one error in the process. In (>= (org-export-get-relative-level h info) (length sections)) the ">=" should be a ">", or it can match with 4 >= 4, which should result in valid menus, but is currently disallowed by this check. Jonas