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
4a217bed
Commit
4a217bed
authored
Mar 31, 2010
by
Eli Zaretskii
Browse files
Fix bug #5703.
w32fns.c (x_create_tip_frame): Copy `parms' before we modify it in this function.
parent
4f103e04
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/w32fns.c
src/w32fns.c
+4
-0
No files found.
src/ChangeLog
View file @
4a217bed
2010-03-31 Eli Zaretskii <eliz@gnu.org>
* w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
in this function. (Bug#5703)
2010-03-31 Chong Yidong <cyd@stupidchicken.com>
* nsterm.h: Fix last change.
...
...
src/w32fns.c
View file @
4a217bed
...
...
@@ -5427,6 +5427,10 @@ x_create_tip_frame (dpyinfo, parms, text)
kb
=
dpyinfo
->
terminal
->
kboard
;
/* The calls to x_get_arg remove elements from PARMS, so copy it to
avoid destructive changes behind our caller's back. */
parms
=
Fcopy_alist
(
parms
);
/* Get the name of the frame to use for resource lookup. */
name
=
x_get_arg
(
dpyinfo
,
parms
,
Qname
,
"name"
,
"Name"
,
RES_TYPE_STRING
);
if
(
!
STRINGP
(
name
)
...
...
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