summaryrefslogtreecommitdiff
path: root/iconv/iconv_prog.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-20 00:34:21 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-20 00:34:21 +0000
commitd2dfc5de011fb525161b85a1408f716a2ea358cc (patch)
tree22804aa59f348ac9d5bf432d2ddeb4c79ad31910 /iconv/iconv_prog.c
parentd620426811688301eb1cbe6e63773d6430b2706e (diff)
Update.
* iconv/gconv_int.h (strict gconv_module): Remove all members associated with regular expressions. Use a simple string as the from name. * iconv/gconv_db.c: Remove code handling regular expressions. * iconv/gconv_conf.c: Likewise. * iconv/iconv_prog.c: Likewise. * iconv/gconv_builtin.h: Adjust for change in gconv_conf.c.
Diffstat (limited to 'iconv/iconv_prog.c')
-rw-r--r--iconv/iconv_prog.c25
1 files changed, 7 insertions, 18 deletions
diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c
index 9c85b7ce69..d8e7817dd9 100644
--- a/iconv/iconv_prog.c
+++ b/iconv/iconv_prog.c
@@ -595,23 +595,15 @@ add_known_names (struct gconv_module *node)
add_known_names (node->left);
if (node->right != NULL)
add_known_names (node->right);
- if (node->same != NULL)
- add_known_names (node->same);
do
{
- if (node->from_pattern == NULL)
- {
- if (strcmp (node->from_constpfx, "INTERNAL"))
- tsearch (node->from_constpfx, &printlist,
- (__compar_fn_t) strverscmp);
- if (strcmp (node->to_string, "INTERNAL"))
- tsearch (node->to_string, &printlist, (__compar_fn_t) strverscmp);
- }
- else
- if (strcmp (node->from_pattern, "INTERNAL"))
- tsearch (node->from_pattern, &printlist, (__compar_fn_t) strverscmp);
+ if (strcmp (node->from_string, "INTERNAL"))
+ tsearch (node->from_string, &printlist,
+ (__compar_fn_t) strverscmp);
+ if (strcmp (node->to_string, "INTERNAL"))
+ tsearch (node->to_string, &printlist, (__compar_fn_t) strverscmp);
- node = node->matching;
+ node = node->same;
}
while (node != NULL);
}
@@ -636,10 +628,7 @@ print_known_names (void)
The following list contain all the coded character sets known. This does\n\
not necessarily mean that all combinations of these names can be used for\n\
the FROM and TO command line parameters. One coded character set can be\n\
-listed with several different names (aliases).\n\
- Some of the names are no plain strings but instead regular expressions and\n\
-they match a variety of names which can be given as parameters to the\n\
-program.\n\n "), stdout);
+listed with several different names (aliases).\n\n "), stdout);
/* Now print the collected names. */
column = 2;