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
0df098bf
Commit
0df098bf
authored
Mar 20, 2014
by
Paul Eggert
Browse files
* doc.c (store_function_docstring): Fix pointer signedness mismatch.
parent
494ec1e7
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/doc.c
src/doc.c
+1
-1
No files found.
src/ChangeLog
View file @
0df098bf
2014-03-20 Paul Eggert <eggert@cs.ucla.edu>
* doc.c (store_function_docstring): Fix pointer signedness mismatch.
2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
* doc.c (store_function_docstring): Warn when we don't know where to
...
...
src/doc.c
View file @
0df098bf
...
...
@@ -537,7 +537,7 @@ store_function_docstring (Lisp_Object obj, ptrdiff_t offset)
ASET
(
fun
,
COMPILED_DOC_STRING
,
make_number
(
offset
));
else
message
(
"No docstring slot for %s"
,
SYMBOLP
(
obj
)
?
SDATA
(
SYMBOL_NAME
(
obj
))
:
"<anonymous>"
);
SYMBOLP
(
obj
)
?
S
SDATA
(
SYMBOL_NAME
(
obj
))
:
"<anonymous>"
);
}
}
...
...
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