Function: forms-find-file-other-window
forms-find-file-other-window is an autoloaded, interactive and
byte-compiled function defined in forms.el.gz.
Signature
(forms-find-file-other-window FN)
Documentation
Visit a file in Forms mode in other window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/forms.el.gz
;;;###autoload
(defun forms-find-file-other-window (fn)
"Visit a file in Forms mode in other window."
(interactive "fFbrowse file in other window: ")
(let ((enable-local-eval t)
(enable-local-variables t))
(find-file-other-window fn)
(or forms--mode-setup (forms-mode t))))