Function: ffap-read-only-other-frame

ffap-read-only-other-frame is an interactive and byte-compiled function defined in ffap.el.gz.

Signature

(ffap-read-only-other-frame FILENAME)

Documentation

Like ffap, but put buffer in another frame and mark as read-only.

Only intended for interactive use.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-read-only-other-frame (filename)
  "Like `ffap', but put buffer in another frame and mark as read-only.
Only intended for interactive use."
  (interactive (list (ffap-prompter nil " read only other frame")))
  (let ((value (ffap-other-frame filename)))
    (ffap--toggle-read-only value)
    value))