From 1208f96fe41fa87dfab2ee0a3b67a822380aeb27 Mon Sep 17 00:00:00 2001 From: NotZed Date: Sun, 5 Mar 2000 04:26:11 +0000 Subject: Output 'and' bits between the rules. 2000-03-04 NotZed * filter-druid.c (html_write_options): Output 'and' bits between the rules. svn path=/trunk/; revision=2056 --- filter/filter-druid.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'filter/filter-druid.c') diff --git a/filter/filter-druid.c b/filter/filter-druid.c index 4b7951a7c2..5dfd66acca 100644 --- a/filter/filter-druid.c +++ b/filter/filter-druid.c @@ -216,6 +216,7 @@ html_write_options(GtkHTML *html, struct filter_option *option, char *def) for (i=0;ioptions; while (optionrulel) { struct filter_optionrule *or = optionrulel->data; @@ -226,7 +227,11 @@ html_write_options(GtkHTML *html, struct filter_option *option, char *def) doneheader = TRUE; } + if (donefirst) { + gtk_html_write(html, stream, "   and ", strlen("   and ")); + } filter_description_html_write(or->rule->description, or->args, html, stream); + donefirst = TRUE; gtk_html_write(html, stream, "
", strlen("
")); } optionrulel = g_list_next(optionrulel); -- cgit