From: Richard M. Stallman Date: Sat, 4 Apr 1998 06:37:54 +0000 (+0000) Subject: (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM. X-Git-Tag: emacs-20.3~1715 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bba88bb1656a5ec8735ed5712916b73e68e7c99d;p=emacs.git (make_frame_without_minibuffer): Conditionalize on HAVE_WINDOW_SYSTEM. (make_minibuffer_frame): Likewise. --- 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) return f; } +#ifdef HAVE_WINDOW_SYSTEM /* Make a frame using a separate minibuffer window on another frame. MINI_WINDOW is the minibuffer window to use. nil means use the default (the global minibuffer). */ @@ -473,6 +474,7 @@ make_minibuffer_frame () : Fcar (Vminibuffer_list))); return f; } +#endif /* HAVE_WINDOW_SYSTEM */ /* Construct a frame that refers to the terminal (stdin and stdout). */