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 | |
| parent | 60002bf5c84f68a641c4acebe56cd1e36b6a3e86 (diff) | |
| download | emacs-a54e348216bc8154cafad25ab2edf02fde463204.tar.gz emacs-a54e348216bc8154cafad25ab2edf02fde463204.zip | |
* fns.c (Fputhash): Document return value.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6afb661e759..87259a083ae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-06-07 Daniel Colascione <dan.colascione@gmail.com> | ||
| 2 | |||
| 3 | * fns.c (Fputhash): Document return value. | ||
| 4 | |||
| 1 | 2011-06-06 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-06-06 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * image.c (gif_load): Implement gif89a spec "no disposal" method. | 7 | * image.c (gif_load): Implement gif89a spec "no disposal" method. |
| @@ -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); |