summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-01-18 01:48:43 +0000
committerRichard M. Stallman <rms@gnu.org>2006-01-18 01:48:43 +0000
commit26587c7daaeee3b23bf3e65dc6b8cd4bdb243ce5 (patch)
tree9ede3fd5f6ebcf5437e4db8b6878a908a9f12f12 /src
parentdd1efb2e003bda2edfba6facdaba1227e6b88c50 (diff)
downloademacs-26587c7daaeee3b23bf3e65dc6b8cd4bdb243ce5.tar.gz
(x_frame_get_and_record_arg): Don't record Qunbound value in f->param_alist.
Diffstat (limited to 'src')
-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;