1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 08:31:35 -08:00

(x_frame_get_and_record_arg): Don't record Qunbound value in f->param_alist.

This commit is contained in:
Richard M. Stallman 2006-01-18 01:48:49 +00:00
parent 6bca59a3cc
commit edd1c6857e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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;