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
edd1c685
Commit
edd1c685
authored
Jan 18, 2006
by
Richard M. Stallman
Browse files
(x_frame_get_and_record_arg): Don't record Qunbound value in f->param_alist.
parent
6bca59a3
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/frame.c
src/frame.c
+1
-1
No files found.
src/ChangeLog
View file @
edd1c685
2006-01-17 Richard M. Stallman <rms@gnu.org>
* frame.c (x_frame_get_and_record_arg): Don't record Qunbound
value in f->param_alist.
2006-01-15 Andreas Schwab <schwab@suse.de>
* search.c (Freplace_match): Use UPPERCASEP instead of !NOCASEP.
...
...
src/frame.c
View file @
edd1c685
...
...
@@ -3604,7 +3604,7 @@ x_frame_get_and_record_arg (f, alist, param, attribute, class, type)
value
=
x_get_arg
(
FRAME_X_DISPLAY_INFO
(
f
),
alist
,
param
,
attribute
,
class
,
type
);
if
(
!
NILP
(
value
))
if
(
!
NILP
(
value
)
&&
!
EQ
(
value
,
Qunbound
)
)
store_frame_param
(
f
,
param
,
value
);
return
value
;
...
...
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