Function: ffap-menu-cont
ffap-menu-cont is a byte-compiled function defined in ffap.el.gz.
Signature
(ffap-menu-cont CHOICE)
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-menu-cont (choice) ; continuation of ffap-menu
(if (< (cdr choice) 0)
(ffap-menu t) ; *Rescan*
(push-mark)
(goto-char (cdr choice))
;; Momentary highlight:
(unwind-protect
(progn
(and ffap-highlight (ffap-guesser) (ffap-highlight))
(sit-for 0) ; display
(find-file-at-point (car choice)))
(ffap-highlight t))))