Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ccd8f7fe
Commit
ccd8f7fe
authored
Jan 25, 2008
by
Thien-Thi Nguyen
Browse files
(Fclrhash): Return TABLE.
parent
d5794180
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/fns.c
src/fns.c
+3
-2
No files found.
src/ChangeLog
View file @
ccd8f7fe
2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
* fns.c (Fclrhash): Return TABLE.
2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
...
...
src/fns.c
View file @
ccd8f7fe
...
...
@@ -5407,12 +5407,13 @@ DEFUN ("hash-table-p", Fhash_table_p, Shash_table_p, 1, 1, 0,
DEFUN
(
"clrhash"
,
Fclrhash
,
Sclrhash
,
1
,
1
,
0
,
doc: /* Clear hash table TABLE. */)
doc
:
/* Clear hash table TABLE
and return it
. */
)
(
table
)
Lisp_Object
table
;
{
hash_clear
(
check_hash_table
(
table
));
return Qnil;
/* Be compatible with XEmacs. */
return
table
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment