aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ffap.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ffap.el')
-rw-r--r--lisp/ffap.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ffap.el b/lisp/ffap.el
index 99bb65faafe..a7983f08395 100644
--- a/lisp/ffap.el
+++ b/lisp/ffap.el
@@ -32,7 +32,7 @@
32;; (`ffap-require-prefix' swaps these behaviors). This is useful for 32;; (`ffap-require-prefix' swaps these behaviors). This is useful for
33;; following references in situations such as mail or news buffers, 33;; following references in situations such as mail or news buffers,
34;; README's, MANIFEST's, and so on. Submit bugs or suggestions with 34;; README's, MANIFEST's, and so on. Submit bugs or suggestions with
35;; M-x ffap-bug. 35;; M-x report-emacs-bug.
36;; 36;;
37;; For the default installation, add this line to your init file: 37;; For the default installation, add this line to your init file:
38;; 38;;
@@ -162,8 +162,12 @@ schemes (e.g. \"ftp\"); in that case, only convert those URLs."
162 :group 'ffap 162 :group 'ffap
163 :version "24.3") 163 :version "24.3")
164 164
165(defcustom ffap-lax-url nil 165(defcustom ffap-lax-url t
166 "If non-nil, allow lax URL matching." 166 "If non-nil, allow lax URL matching.
167The default non-nil value might produce false URLs in C++ code
168with symbols like \"std::find\". On the other hand, setting
169this to nil will disable recognition of URLs that are not
170well-formed, such as \"user@host\" or \"<user@host>\"."
167 :type 'boolean 171 :type 'boolean
168 :group 'ffap 172 :group 'ffap
169 :version "25.1") 173 :version "25.1")