From 4b19d547a20e1c68e4152efa10e6a820815e840d Mon Sep 17 00:00:00 2001 From: Michal Vaner Date: Thu, 23 Oct 2008 10:45:13 +0200 Subject: [PATCH] ucw docs: Operation names, link to config --- ucw/getopt.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ucw/getopt.h b/ucw/getopt.h index 453d382e..3ff0a804 100644 --- a/ucw/getopt.h +++ b/ucw/getopt.h @@ -57,7 +57,10 @@ int cf_set(const char *string); /** * List of operations used on items. * This macro is used to generate internal source code, - * but you may be interested in the actions it creates. + * but you may be interested in the list of operations it creates. + * + * Each operation corresponds to the same-named operation + * described in <>. **/ #define CF_OPERATIONS T(CLOSE) T(SET) T(CLEAR) T(ALL) \ T(APPEND) T(PREPEND) T(REMOVE) T(EDIT) T(AFTER) T(BEFORE) T(COPY) @@ -67,7 +70,7 @@ int cf_set(const char *string); * Sections can be used with SET. * Lists can be used with everything. */ #define T(x) OP_##x, -enum cf_operation { CF_OPERATIONS }; /** Allowed operations on items. See <>. **/ +enum cf_operation { CF_OPERATIONS }; /** Allowed operations on items. See <> for list (they have an `OP_` prefix -- it means you use `OP_SET` instead of just `SET`). **/ #undef T struct cf_item; -- 2.39.5