From 40a4845693cafd4a324bcbacaa652a8a4000a428 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 22 Jul 2020 10:34:14 +0200 Subject: [PATCH] libsmartcols: (docs) add missing references Signed-off-by: Karel Zak --- libsmartcols/docs/libsmartcols-docs.xml | 4 ++++ libsmartcols/src/table.c | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/libsmartcols/docs/libsmartcols-docs.xml b/libsmartcols/docs/libsmartcols-docs.xml index e396133ad..f963cbda4 100644 --- a/libsmartcols/docs/libsmartcols-docs.xml +++ b/libsmartcols/docs/libsmartcols-docs.xml @@ -78,4 +78,8 @@ available from https://www.kernel.org/pub/linux/utils/util-linux/. Index of new symbols in 2.34 + + Index of new symbols in 2.35 + + diff --git a/libsmartcols/src/table.c b/libsmartcols/src/table.c index e14c82b1b..0ca154a51 100644 --- a/libsmartcols/src/table.c +++ b/libsmartcols/src/table.c @@ -483,6 +483,8 @@ int scols_table_next_column(struct libscols_table *tb, * Sets @iter to the position of @cl in the file @tb. * * Returns: 0 on success, negative number in case of error. + * + * Since: 2.35 */ int scols_table_set_columns_iter( struct libscols_table *tb, @@ -1162,7 +1164,7 @@ int scols_table_enable_header_repeat(struct libscols_table *tb, int enable) * The extra space after last column is ignored by default. The output * maximization add padding for all columns. * - * This setting is mutually exclusive to cols_table_enable_minout(). + * This setting is mutually exclusive to scols_table_enable_minout(). * * Returns: 0 on success, negative number in case of an error. */ @@ -1188,6 +1190,8 @@ int scols_table_enable_maxout(struct libscols_table *tb, int enable) * This setting is mutually exclusive to cols_table_enable_maxout(). * * Returns: 0 on success, negative number in case of an error. + * + * Since: 2.35 */ int scols_table_enable_minout(struct libscols_table *tb, int enable) { @@ -1373,6 +1377,8 @@ int scols_table_is_maxout(const struct libscols_table *tb) * @tb: table * * Returns: 1 if output minimization is enabled or 0 + * + * Since: 2.35 */ int scols_table_is_minout(const struct libscols_table *tb) {