Function: find-library-other-frame

find-library-other-frame is an autoloaded, interactive and byte-compiled function defined in find-func.el.gz.

Signature

(find-library-other-frame LIBRARY)

Documentation

Find the Emacs Lisp source of LIBRARY in another frame.

See find-library for more details.

Probably introduced at or before Emacs version 26.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-library-other-frame (library)
  "Find the Emacs Lisp source of LIBRARY in another frame.

See `find-library' for more details."
  (interactive (list (read-library-name)))
  (prog1
      (switch-to-buffer-other-frame (find-file-noselect
                                     (find-library-name library)))
    (run-hooks 'find-function-after-hook)))