summaryrefslogtreecommitdiffstats
path: root/gettext-tools/src/x-tcl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/src/x-tcl.c')
-rw-r--r--gettext-tools/src/x-tcl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gettext-tools/src/x-tcl.c b/gettext-tools/src/x-tcl.c
index 8af4436..eae7cf6 100644
--- a/gettext-tools/src/x-tcl.c
+++ b/gettext-tools/src/x-tcl.c
@@ -91,7 +91,7 @@ x_tcl_keyword (const char *name)
int argnum2;
if (keywords.table == NULL)
- init_hash (&keywords, 100);
+ hash_init (&keywords, 100);
split_keywordspec (name, &end, &argnum1, &argnum2);
@@ -102,8 +102,8 @@ x_tcl_keyword (const char *name)
if (argnum1 == 0)
argnum1 = 1;
- insert_entry (&keywords, name, end - name,
- (void *) (long) (argnum1 + (argnum2 << 10)));
+ hash_insert_entry (&keywords, name, end - name,
+ (void *) (long) (argnum1 + (argnum2 << 10)));
}
}
@@ -904,9 +904,9 @@ read_command (int looking_for, flag_context_ty outer_context)
if (function_name[0] == ':' && function_name[1] == ':')
stripped_name += 2;
- if (find_entry (&keywords,
- stripped_name, strlen (stripped_name),
- &keyword_value)
+ if (hash_find_entry (&keywords,
+ stripped_name, strlen (stripped_name),
+ &keyword_value)
== 0)
{
argnum1 = (int) (long) keyword_value & ((1 << 10) - 1);