# HG changeset patch # User Richard M. Stallman # Date 788457039 0 # Node ID 92dcc001aa20787357ae982836584e9cab86501f # Parent 525b67bc4f17ed263e357f35757d3335908d8846 (x_figure_window_size): Treat missing user-position parm as nil. diff -r 525b67bc4f17 -r 92dcc001aa20 src/xfns.c --- a/src/xfns.c Mon Dec 26 15:49:29 1994 +0000 +++ b/src/xfns.c Mon Dec 26 15:50:39 1994 +0000 @@ -2119,7 +2119,7 @@ window_prompting |= XNegative; } - if (!NILP (tem2)) + if (!NILP (tem2) && ! EQ (tem2, Qunbound)) window_prompting |= USPosition; else window_prompting |= PPosition;