Variable: ffap-lax-url

ffap-lax-url is a customizable variable defined in ffap.el.gz.

Value

nil

Documentation

If non-nil, allow lax URL matching.

The default non-nil value might produce false URLs in C++ code with symbols like "std::find". On the other hand, setting this to nil will disable recognition of URLs that are not well-formed.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-lax-url nil
  "If non-nil, allow lax URL matching.
The default non-nil value might produce false URLs in C++ code
with symbols like \"std::find\".  On the other hand, setting
this to nil will disable recognition of URLs that are not
well-formed."
  :type 'boolean
  :group 'ffap
  :version "30.1")