diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fns.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1c4b08d24d7..eac48d83fbb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-26 Thien-Thi Nguyen <ttn@gnuvola.org> | ||
| 2 | |||
| 3 | * fns.c (Fclrhash): Return TABLE. | ||
| 4 | |||
| 1 | 2008-01-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2008-01-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p. | 7 | * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p. |
| @@ -5406,12 +5406,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0, | |||
| 5406 | 5406 | ||
| 5407 | 5407 | ||
| 5408 | DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, | 5408 | DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, |
| 5409 | doc: /* Clear hash table TABLE. */) | 5409 | doc: /* Clear hash table TABLE and return it. */) |
| 5410 | (table) | 5410 | (table) |
| 5411 | Lisp_Object table; | 5411 | Lisp_Object table; |
| 5412 | { | 5412 | { |
| 5413 | hash_clear (check_hash_table (table)); | 5413 | hash_clear (check_hash_table (table)); |
| 5414 | return Qnil; | 5414 | /* Be compatible with XEmacs. */ |
| 5415 | return table; | ||
| 5415 | } | 5416 | } |
| 5416 | 5417 | ||
| 5417 | 5418 | ||