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
f0250249
Commit
f0250249
authored
Feb 22, 1993
by
Jim Blandy
Browse files
* editfns.c (Fmessage): Don't forget to return a value when
args[0] == Qnil.
parent
8fc798e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/editfns.c
src/editfns.c
+4
-1
No files found.
src/editfns.c
View file @
f0250249
...
...
@@ -1187,7 +1187,10 @@ minibuffer contents show.")
Lisp_Object
*
args
;
{
if
(
NILP
(
args
[
0
]))
message
(
0
);
{
message
(
0
);
return
Qnil
;
}
else
{
register
Lisp_Object
val
;
...
...
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