diff options
| author | Daniel Colascione | 2011-06-06 18:39:26 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2011-06-06 18:39:26 -0700 |
| commit | a54e348216bc8154cafad25ab2edf02fde463204 (patch) | |
| tree | c7140e50e000f13055ab3be6ab8b0f0ea734271a /src/fns.c | |
| parent | 60002bf5c84f68a641c4acebe56cd1e36b6a3e86 (diff) | |
| download | emacs-a54e348216bc8154cafad25ab2edf02fde463204.tar.gz emacs-a54e348216bc8154cafad25ab2edf02fde463204.zip | |
* fns.c (Fputhash): Document return value.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -4469,7 +4469,7 @@ If KEY is not found, return DFLT which defaults to nil. */) | |||
| 4469 | DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0, | 4469 | DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0, |
| 4470 | doc: /* Associate KEY with VALUE in hash table TABLE. | 4470 | doc: /* Associate KEY with VALUE in hash table TABLE. |
| 4471 | If KEY is already present in table, replace its current value with | 4471 | If KEY is already present in table, replace its current value with |
| 4472 | VALUE. */) | 4472 | VALUE. In any case, return VALUE. */) |
| 4473 | (Lisp_Object key, Lisp_Object value, Lisp_Object table) | 4473 | (Lisp_Object key, Lisp_Object value, Lisp_Object table) |
| 4474 | { | 4474 | { |
| 4475 | struct Lisp_Hash_Table *h = check_hash_table (table); | 4475 | struct Lisp_Hash_Table *h = check_hash_table (table); |