Function: ff-get-other-file
ff-get-other-file is an autoloaded, interactive and byte-compiled
function defined in find-file.el.gz.
Signature
(ff-get-other-file &optional IN-OTHER-WINDOW)
Documentation
Find the header or source file corresponding to this file.
See also the documentation for ff-find-other-file.
If optional IN-OTHER-WINDOW is non-nil, find the file in another window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/find-file.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; User entry points
;;;###autoload
(defun ff-get-other-file (&optional in-other-window)
"Find the header or source file corresponding to this file.
See also the documentation for `ff-find-other-file'.
If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
(interactive "P")
(let ((ff-ignore-include t))
(ff-find-the-other-file in-other-window)))