Mercurial > emacs
comparison src/xfns.c @ 10264:92dcc001aa20
(x_figure_window_size): Treat missing user-position parm as nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 26 Dec 1994 15:50:39 +0000 |
parents | 617bee0c64f6 |
children | e0f6b4ab7412 |
comparison
equal
deleted
inserted
replaced
10263:525b67bc4f17 | 10264:92dcc001aa20 |
---|---|
2117 f->display.x->left_pos = XINT (tem1); | 2117 f->display.x->left_pos = XINT (tem1); |
2118 if (f->display.x->left_pos < 0) | 2118 if (f->display.x->left_pos < 0) |
2119 window_prompting |= XNegative; | 2119 window_prompting |= XNegative; |
2120 } | 2120 } |
2121 | 2121 |
2122 if (!NILP (tem2)) | 2122 if (!NILP (tem2) && ! EQ (tem2, Qunbound)) |
2123 window_prompting |= USPosition; | 2123 window_prompting |= USPosition; |
2124 else | 2124 else |
2125 window_prompting |= PPosition; | 2125 window_prompting |= PPosition; |
2126 } | 2126 } |
2127 | 2127 |