diff options
| author | Jim Blandy | 1992-07-27 20:58:32 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-07-27 20:58:32 +0000 |
| commit | 7500877e4a0bc3cf7731031b75be808d8aadb477 (patch) | |
| tree | dacad15f186fd56aa7f11db42494081c7744a452 /src | |
| parent | b2bb6ec8ff2bac312f40ab228465ba13e85ee541 (diff) | |
| download | emacs-7500877e4a0bc3cf7731031b75be808d8aadb477.tar.gz emacs-7500877e4a0bc3cf7731031b75be808d8aadb477.zip | |
entered into RCS
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c index 785f59a2593..8f261184b6d 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -704,7 +704,7 @@ Also raises the frame so that nothing obscures it.") | |||
| 704 | Lisp_Object frame; | 704 | Lisp_Object frame; |
| 705 | { | 705 | { |
| 706 | if (NILP (frame)) | 706 | if (NILP (frame)) |
| 707 | frame = selected_frame; | 707 | XSET (frame, Lisp_Frame, selected_frame); |
| 708 | 708 | ||
| 709 | CHECK_LIVE_FRAME (frame, 0); | 709 | CHECK_LIVE_FRAME (frame, 0); |
| 710 | 710 | ||
| @@ -721,7 +721,7 @@ DEFUN ("make-frame-invisible", Fmake_frame_invisible, Smake_frame_invisible, | |||
| 721 | Lisp_Object frame; | 721 | Lisp_Object frame; |
| 722 | { | 722 | { |
| 723 | if (NILP (frame)) | 723 | if (NILP (frame)) |
| 724 | frame = selected_frame; | 724 | XSET (frame, Lisp_Frame, selected_frame); |
| 725 | 725 | ||
| 726 | CHECK_LIVE_FRAME (frame, 0); | 726 | CHECK_LIVE_FRAME (frame, 0); |
| 727 | 727 | ||
| @@ -738,7 +738,7 @@ DEFUN ("iconify-frame", Ficonify_frame, Siconify_frame, | |||
| 738 | Lisp_Object frame; | 738 | Lisp_Object frame; |
| 739 | { | 739 | { |
| 740 | if (NILP (frame)) | 740 | if (NILP (frame)) |
| 741 | frame = selected_frame; | 741 | XSET (frame, Lisp_Frame, selected_frame); |
| 742 | 742 | ||
| 743 | CHECK_LIVE_FRAME (frame, 0); | 743 | CHECK_LIVE_FRAME (frame, 0); |
| 744 | 744 | ||