From: Bruno Haible Date: Fri, 7 Oct 2005 11:27:35 +0000 (+0000) Subject: Revamp the hash table API. X-Git-Tag: v0.15~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cd9afbab88b05391c2ed8d47e0327614c46d5f3;p=thirdparty%2Fgettext.git Revamp the hash table API. --- diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index 221b87f7e..dd0f19262 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,20 @@ +2005-10-03 Bruno Haible + + * hash.h: Add comments everywhere. + (hash_init): Renamed from init_hash. + (hash_destroy): Renamed from delete_hash. + (hash_find_entry): Renamed from find_entry. + (hash_insert_entry): Renamed from insert_entry. + (hash_set_value): New declaration. + (hash_iterate): Renamed from iterate_table. + * hash.c: Add comments everywhere. Reorder. + (hash_init): Renamed from init_hash. + (hash_destroy): Renamed from delete_hash. + (hash_find_entry): Renamed from find_entry. + (hash_insert_entry): Renamed from insert_entry. + (hash_set_value): New function. + (hash_iterate): Renamed from iterate_table. + 2005-10-01 Bruno Haible Support for context dependent translations in PO files. diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 95998dfc2..5ae64f6cd 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,27 @@ +2005-10-03 Bruno Haible + + * message.c (message_list_alloc, message_list_free, + message_list_hash_insert_entry, message_list_remove_if_not, + message_list_msgids_changed, message_list_search): Update. + * write-qt.c (write_qm): Update. + * xgettext.c (flag_context_list_table_lookup, + flag_context_list_table_insert): Update. + * x-awk.c (x_awk_keyword, extract_parenthesized): Update. + * x-c.c (add_keyword, x_c_lex): Update. + * x-csharp.c (x_csharp_keyword, extract_parenthesized: Update. + * x-elisp.c (x_elisp_keyword, read_object): Update. + * x-glade.c (x_glade_keyword, start_element_handler): Update. + * x-java.c (x_java_keyword, extract_parenthesized): Update. + * x-librep.c (x_librep_keyword, read_object): Update. + * x-lisp.c (x_lisp_keyword, read_object): Update. + * x-perl.c (x_perl_keyword, extract_variable, interpolate_keywords, + extract_balanced): Update. + * x-php.c (x_php_keyword, extract_parenthesized): Update. + * x-python.c (x_python_keyword, extract_parenthesized): Update. + * x-scheme.c (x_scheme_keyword, read_object): Update. + * x-sh.c (x_sh_keyword, read_command): Update. + * x-tcl.c (x_tcl_keyword, read_command): Update. + 2005-10-01 Bruno Haible Support for context dependent translations in PO files.