From c3724dc278be6e9402acba37b8deb13ebc18f7e4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 26 Dec 1994 15:50:39 +0000 Subject: [PATCH] (x_figure_window_size): Treat missing user-position parm as nil. --- src/xfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xfns.c b/src/xfns.c index e0b34ec4e2f..37e418ecadd 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2119,7 +2119,7 @@ x_figure_window_size (f, parms) window_prompting |= XNegative; } - if (!NILP (tem2)) + if (!NILP (tem2) && ! EQ (tem2, Qunbound)) window_prompting |= USPosition; else window_prompting |= PPosition; -- 2.39.5