diff options
| author | Richard M. Stallman | 1994-12-26 15:50:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-12-26 15:50:39 +0000 |
| commit | c3724dc278be6e9402acba37b8deb13ebc18f7e4 (patch) | |
| tree | 13a6d1ebc538f8b2d1b4972aac532d6476b09697 /src | |
| parent | 5b689f602f3be7d6a2224667372a8aa460a990a7 (diff) | |
| download | emacs-c3724dc278be6e9402acba37b8deb13ebc18f7e4.tar.gz emacs-c3724dc278be6e9402acba37b8deb13ebc18f7e4.zip | |
(x_figure_window_size): Treat missing user-position parm as nil.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 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; |