Function: ff-find-file
ff-find-file is a byte-compiled function defined in find-file.el.gz.
Signature
(ff-find-file FILE &optional IN-OTHER-WINDOW NEW-FILE)
Documentation
Like find-file, but may show the file in another window.
Source Code
;; Defined in /usr/src/emacs/lisp/find-file.el.gz
(defun ff-find-file (file &optional in-other-window new-file)
"Like `find-file', but may show the file in another window."
(ff-switch-file #'find-file
#'find-file-other-window
file in-other-window new-file))