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
a54e3482
Commit
a54e3482
authored
Jun 06, 2011
by
Daniel Colascione
Browse files
* fns.c (Fputhash): Document return value.
parent
60002bf5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/fns.c
src/fns.c
+1
-1
No files found.
src/ChangeLog
View file @
a54e3482
2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
* fns.c (Fputhash): Document return value.
2011-06-06 Chong Yidong <cyd@stupidchicken.com>
2011-06-06 Chong Yidong <cyd@stupidchicken.com>
* image.c (gif_load): Implement gif89a spec "no disposal" method.
* image.c (gif_load): Implement gif89a spec "no disposal" method.
...
...
src/fns.c
View file @
a54e3482
...
@@ -4469,7 +4469,7 @@ If KEY is not found, return DFLT which defaults to nil. */)
...
@@ -4469,7 +4469,7 @@ If KEY is not found, return DFLT which defaults to nil. */)
DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
DEFUN ("puthash", Fputhash, Sputhash, 3, 3, 0,
doc: /* Associate KEY with VALUE in hash table TABLE.
doc: /* Associate KEY with VALUE in hash table TABLE.
If KEY is already present in table, replace its current value with
If KEY is already present in table, replace its current value with
VALUE. */)
VALUE. In any case, return
VALUE. */)
(Lisp_Object key, Lisp_Object value, Lisp_Object table)
(Lisp_Object key, Lisp_Object value, Lisp_Object table)
{
{
struct Lisp_Hash_Table *h = check_hash_table (table);
struct Lisp_Hash_Table *h = check_hash_table (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