Function: ffap-next-url

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

Signature

(ffap-next-url &optional BACK WRAP)

Documentation

Like ffap-next, but search with ffap-url-regexp.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defun ffap-next-url (&optional back wrap)
  "Like `ffap-next', but search with `ffap-url-regexp'."
  (interactive)
  (let ((ffap-next-regexp ffap-url-regexp))
    (if (called-interactively-p 'interactive)
	(call-interactively 'ffap-next)
      (ffap-next back wrap))))