diff options
author | Rical Jasan <ricaljasan@pacific.net> | 2017-03-12 22:30:41 -0700 |
---|---|---|
committer | Rical Jasan <ricaljasan@pacific.net> | 2017-06-15 21:26:19 -0700 |
commit | 27691d5cec9b896ea0792151a27c6d7d7a4065ea (patch) | |
tree | 28ace0635b22915bd9cde4ddc3cc91b941558ed6 | |
parent | 48d966eb359b559f292b7f6896eff7746e5af390 (diff) | |
download | glibc-27691d5cec9b896ea0792151a27c6d7d7a4065ea.zip glibc-27691d5cec9b896ea0792151a27c6d7d7a4065ea.tar.gz glibc-27691d5cec9b896ea0792151a27c6d7d7a4065ea.tar.bz2 |
manual: Create empty placeholder macros for @standards.
Header and standards annotations are slated for standardization,
including being rendered in the description of functions, variables,
etc. (elements), and eventually required. This commit adds @standards
dummy macros so we can convert all existing annotations to the new
framework while maintaining the rendered status quo.
There needs to be a way to disambiguate annotations in lists of @*x
elements, where a common description is shared but some elements may
have different headers or standards. The @standardsx macro fills this
role by accepting an additional parameter: the name of the annotated
element.
* manual/macros.texi (@standards): New macro. Provide
placeholder for header and standards annotations.
(@standardsx): New macro. Likewise, for lists of @*x
elements.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | manual/macros.texi | 7 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2017-06-15 Rical Jasan <ricaljasan@pacific.net> + + * manual/macros.texi (@standards): New macro. Provide placeholder + for header and standards annotations. + (@standardsx): New macro. Likewise, for lists of @*x elements. + 2017-06-15 Adhemerval Zanella <adhemerval.zanella@linaro.org> * io/Makefile (CFLAGS-sync_file_range.c): Remove rule. diff --git a/manual/macros.texi b/manual/macros.texi index 2e0990e..170e954 100644 --- a/manual/macros.texi +++ b/manual/macros.texi @@ -274,4 +274,11 @@ cwd\comments\ ``\str\.'' @end macro +@c Dummy placeholder while converting annotations. +@macro standards {standard, header} +@end macro +@c To be used for @*x lists of elements. +@macro standardsx {element, standard, header} +@end macro + @end ifclear |