diff options
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 | ||