diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-20 12:07:38 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2012-08-20 12:07:38 +0400 |
commit | e83064befad4b03bae2f873ece63c050f2c4ca22 (patch) | |
tree | bf2882b2b653b07da53a33d393c5667715e8bd4a /src/charset.c | |
parent | 3d300447843086aa7ae4df85dd0a97f27b0b885a (diff) | |
download | emacs-e83064befad4b03bae2f873ece63c050f2c4ca22.tar.gz |
Inline setter functions for hash table members.
* lisp.h (set_hash_key, set_hash_value, set_hash_next)
(set_hash_hash, set_hash_index): Rename with _slot suffix.
(set_hash_key_and_value, set_hash_index, set_hash_next)
(set_hash_hash): New functions.
* charset.c, fns.c: Adjust users.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index 87c16e12008..3e286fa947d 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1131,7 +1131,7 @@ usage: (define-charset-internal ...) */) { new_definition_p = 0; id = XFASTINT (CHARSET_SYMBOL_ID (args[charset_arg_name])); - set_hash_value (hash_table, charset.hash_index, attrs); + set_hash_value_slot (hash_table, charset.hash_index, attrs); } else { |