[net.emacs] Emacs will pop a file buffer into the Minibuf: Fix.

thomas%UTAH-GR@utah-cs@sri-unix.UUCP (08/06/83)

From:  Spencer W. Thomas  <thomas%UTAH-GR@utah-cs>

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