summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-01-18 01:48:49 +0000
committerRichard M. Stallman <rms@gnu.org>2006-01-18 01:48:49 +0000
commitedd1c6857ecfb345734ef01b0dbcd7208e207fc7 (patch)
treea5a2adf308246c4faa231266cfd3aadc0fe28272 /src/frame.c
parent6bca59a3cc30a07745051856b61de05949ac2835 (diff)
downloademacs-edd1c6857ecfb345734ef01b0dbcd7208e207fc7.tar.gz
(x_frame_get_and_record_arg): Don't record Qunbound value in f->param_alist.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 624e1a89b86..9060f7b47c5 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -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;