diff options
| -rw-r--r-- | lisp/ffap.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ffap.el b/lisp/ffap.el index c000066d8cf..c97c7624a60 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el | |||
| @@ -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. |
| 167 | The default non-nil value might produce false URLs in C++ code | ||
| 168 | with symbols like \"std::find\". On the other hand, setting | ||
| 169 | this to nil will disable recognition of URLs that are not | ||
| 170 | well-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") |