aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-04 06:37:54 +0000
committerRichard M. Stallman1998-04-04 06:37:54 +0000
commitbba88bb1656a5ec8735ed5712916b73e68e7c99d (patch)
tree4da1e8a10e4fa867c4d9a6d30cd2a6b66cad940a /src
parentd13a8480044ac28e4f053ad792fd9b3415b1a371 (diff)
downloademacs-bba88bb1656a5ec8735ed5712916b73e68e7c99d.tar.gz
emacs-bba88bb1656a5ec8735ed5712916b73e68e7c99d.zip
(make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM.
(make_minibuffer_frame): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c
index e66cabdb7a7..8a3c50866b2 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -380,6 +380,7 @@ make_frame (mini_p)
380 return f; 380 return f;
381} 381}
382 382
383#ifdef HAVE_WINDOW_SYSTEM
383/* Make a frame using a separate minibuffer window on another frame. 384/* Make a frame using a separate minibuffer window on another frame.
384 MINI_WINDOW is the minibuffer window to use. nil means use the 385 MINI_WINDOW is the minibuffer window to use. nil means use the
385 default (the global minibuffer). */ 386 default (the global minibuffer). */
@@ -473,6 +474,7 @@ make_minibuffer_frame ()
473 : Fcar (Vminibuffer_list))); 474 : Fcar (Vminibuffer_list)));
474 return f; 475 return f;
475} 476}
477#endif /* HAVE_WINDOW_SYSTEM */
476 478
477/* Construct a frame that refers to the terminal (stdin and stdout). */ 479/* Construct a frame that refers to the terminal (stdin and stdout). */
478 480