Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!decvax!harpo!seismo!hao!hplabs!sri-unix!thomas%UTAH-GR@utah-cs From: thomas%UTAH-GR@utah-cs@sri-unix.UUCP Newsgroups: net.emacs Subject: Emacs will pop a file buffer into the Minibuf: Fix. Message-ID: <3917@sri-arpa.UUCP> Date: Sat, 6-Aug-83 07:06:00 EDT Article-I.D.: sri-arpa.3917 Posted: Sat Aug 6 07:06:00 1983 Date-Received: Sun, 7-Aug-83 17:34:29 EDT Lines: 14 From: Spencer W. Thomas Try this in your emacs: set pop-up-windows to 0, then do M-x ^X^Vfile If the file ends up in the minibuffer window, you need this fix. In WindowOn, change: < w = PopUpWindows ? LRUwin () : wn_cur; --- > w = (PopUpWindows || wn_cur->w_next==NULL) ? LRUwin () : wn_cur; =Spencer