diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2022-11-14 09:19:13 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2022-11-15 11:35:52 +0000 |
commit | f5f2686b2cbfddba39035312e8f7704d4d822e89 (patch) | |
tree | 1b7569b3a26216e0fbd53f5ebd990bbaf166a31b | |
parent | dd320623acb2d51745406bf1acac4a5fcfcbe13f (diff) | |
download | gcc-f5f2686b2cbfddba39035312e8f7704d4d822e89.zip gcc-f5f2686b2cbfddba39035312e8f7704d4d822e89.tar.gz gcc-f5f2686b2cbfddba39035312e8f7704d4d822e89.tar.bz2 |
doc: Format region pragmas as separate items
This seems consistent with how other paired pragmas are documented in
texinfo, e.g. push_options and pop_options.
gcc/ChangeLog:
* doc/cpp.texi (Pragmas): Use @item and @itemx for region
pragmas.
-rw-r--r-- | gcc/doc/cpp.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index 1be29eb..5e86a95 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -3843,7 +3843,8 @@ file will never be read again, no matter what. It is a less-portable alternative to using @samp{#ifndef} to guard the contents of header files against multiple inclusions. -@code{#pragma region @{tokens@}...}, @code{#pragma endregion @{tokens@}...} +@item #pragma region @{tokens@}... +@itemx #pragma endregion @{tokens@}... These pragmas are accepted, but have no effect. @end ftable |