diff options
| author | Thien-Thi Nguyen | 2008-01-25 10:01:15 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2008-01-25 10:01:15 +0000 |
| commit | ccd8f7fe141f55e9ba381633b02a6467df0270e1 (patch) | |
| tree | 0d04ff54f65d3c3cf737463baa4edf2257fb4405 /src | |
| parent | d57941800355c2a967705089d9bc790a58d18a3a (diff) | |
| download | emacs-ccd8f7fe141f55e9ba381633b02a6467df0270e1.tar.gz emacs-ccd8f7fe141f55e9ba381633b02a6467df0270e1.zip | |
(Fclrhash): Return TABLE.
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 24b69f1a8d1..a6d8cc928d6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org> | ||
| 2 | |||
| 3 | * fns.c (Fclrhash): Return TABLE. | ||
| 4 | |||
| 1 | 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2008-01-23 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. |
| @@ -5407,12 +5407,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0, | |||
| 5407 | 5407 | ||
| 5408 | 5408 | ||
| 5409 | DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, | 5409 | DEFUN ("clrhash", Fclrhash, Sclrhash, 1, 1, 0, |
| 5410 | doc: /* Clear hash table TABLE. */) | 5410 | doc: /* Clear hash table TABLE and return it. */) |
| 5411 | (table) | 5411 | (table) |
| 5412 | Lisp_Object table; | 5412 | Lisp_Object table; |
| 5413 | { | 5413 | { |
| 5414 | hash_clear (check_hash_table (table)); | 5414 | hash_clear (check_hash_table (table)); |
| 5415 | return Qnil; | 5415 | /* Be compatible with XEmacs. */ |
| 5416 | return table; | ||
| 5416 | } | 5417 | } |
| 5417 | 5418 | ||
| 5418 | 5419 | ||