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
3f65d6f5
Commit
3f65d6f5
authored
Jun 02, 2006
by
Eli Zaretskii
Browse files
(x_set_icon_name): Don't use arg if it's not a string and not nil.
parent
c1def6ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/w32fns.c
src/w32fns.c
+1
-1
No files found.
src/ChangeLog
View file @
3f65d6f5
2006-06-03 Eli Zaretskii <eliz@gnu.org>
* w32fns.c (x_set_icon_name): Don't use arg if it's not a string
and not nil.
2006-06-02 Chong Yidong <cyd@stupidchicken.com>
* xfns.c (x_set_icon_name): No-op if arg is non-nil and not a
...
...
src/w32fns.c
View file @
3f65d6f5
...
...
@@ -1683,7 +1683,7 @@ x_set_icon_name (f, arg, oldval)
if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
return;
}
else if (!
STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qni
l))
else if (!
NILP (arg) || NILP (oldva
l))
return;
f->icon_name = arg;
...
...
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