Function: ffap-literally

ffap-literally is an interactive and byte-compiled function defined in ffap.el.gz.

Signature

(ffap-literally FILENAME)

Documentation

Like ffap and command find-file-literally(var)/find-file-literally(fun).

Only intended for interactive use.

Key Bindings

Aliases

find-file-literally-at-point

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-literally (filename)
  "Like `ffap' and command `find-file-literally'.
Only intended for interactive use."
  (interactive (list (ffap-prompter nil " literally")))
  (let ((ffap-file-finder 'find-file-literally))
    (find-file-at-point filename)))