Added 'simplesect' sections to the manual

'simplesect' encloses the introductory text of sections with
subsections, so that each section either is all text or is all
subsections. (This commit also corrects a small brace error in the
manual and extra spaces/tabs in some other files.)
This commit is contained in:
Roberto Ierusalimschy
2020-04-13 13:42:40 -03:00
parent 7ccc6d8290
commit 9e0a8475cd
5 changed files with 56 additions and 6 deletions

View File

@@ -29,7 +29,7 @@
** Integer type for decoded UTF-8 values; MAXUTF needs 31 bits.
*/
#if (UINT_MAX >> 30) >= 1
typedef unsigned int utfint;
typedef unsigned int utfint;
#else
typedef unsigned long utfint;
#endif