diff options
| author | Richard M. Stallman | 1993-11-22 04:33:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-22 04:33:26 +0000 |
| commit | 1f11a5cab282e94439e4e5a7a2e9a17b19af5573 (patch) | |
| tree | a075a6b413139a1f35f52b9994cea463b7165a24 /src | |
| parent | 3a6b074b35120e32e5c6f7295bcf032e8b7f1563 (diff) | |
| download | emacs-1f11a5cab282e94439e4e5a7a2e9a17b19af5573.tar.gz emacs-1f11a5cab282e94439e4e5a7a2e9a17b19af5573.zip | |
(x_set_frame_parameters): Call check_frame_size
before Fset_frame_size and Fset_frame_position.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index d5dbc810253..249f89ba756 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -419,6 +419,8 @@ x_set_frame_parameters (f, alist) | |||
| 419 | { | 419 | { |
| 420 | Lisp_Object frame; | 420 | Lisp_Object frame; |
| 421 | 421 | ||
| 422 | check_frame_size (f, &height, &width); | ||
| 423 | |||
| 422 | XSET (frame, Lisp_Frame, f); | 424 | XSET (frame, Lisp_Frame, f); |
| 423 | 425 | ||
| 424 | if ((NUMBERP (width) && XINT (width) != FRAME_WIDTH (f)) | 426 | if ((NUMBERP (width) && XINT (width) != FRAME_WIDTH (f)) |