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
d13a8480
Commit
d13a8480
authored
Apr 04, 1998
by
Richard M. Stallman
Browse files
(Fmessage_box): Pass the missing third argument
STRING_MULTIBYTE (val) to message2.
parent
3d30b8bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/editfns.c
src/editfns.c
+2
-1
No files found.
src/editfns.c
View file @
d13a8480
...
...
@@ -2170,7 +2170,8 @@ minibuffer contents show.")
message_text
=
(
char
*
)
xrealloc
(
message_text
,
message_length
);
}
bcopy
(
XSTRING
(
val
)
->
data
,
message_text
,
STRING_BYTES
(
XSTRING
(
val
)));
message2
(
message_text
,
STRING_BYTES
(
XSTRING
(
val
)));
message2
(
message_text
,
STRING_BYTES
(
XSTRING
(
val
)),
STRING_MULTIBYTE
(
val
));
return
val
;
#endif
/* not HAVE_MENUS */
}
...
...
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