Mercurial > emacs
changeset 47769:2a1b3fb46c95
(thing-at-point-uri-schemes): New variable.
(thing-at-point-url-regexp): Use it.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Sun, 06 Oct 2002 17:52:40 +0000 |
parents | 9def08bde21a |
children | 8cdc87bee063 |
files | lisp/thingatpt.el |
diffstat | 1 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/thingatpt.el Sun Oct 06 14:57:38 2002 +0000 +++ b/lisp/thingatpt.el Sun Oct 06 17:52:40 2002 +0000 @@ -213,10 +213,21 @@ Hostname matching is stricter in this case than for ``thing-at-point-url-regexp''.") +(defvar thing-at-point-uri-schemes + ;; Officials from http://www.iana.org/assignments/uri-schemes + '("ftp://" "http://" "gopher://" "mailto:" "news:" "nntp:" + "telnet://" "wais://" "file:/" "prospero:" "z39.50s:" "z39.50r:" + "cid:" "mid:" "vemmi:" "service:" "imap:" "nfs:" "acap:" "rtsp:" + "tip:" "pop:" "data:" "dav:" "opaquelocktoken:" "sip:" "tel:" "fax:" + "modem:" "ldap:" "https://" "soap.beep:" "soap.beeps:" "urn:" "go:" + "afs:" "tn3270:" "mailserver:" + ;; Compatibility + "snews:") + "Uniform Resource Identifier (URI) Schemes") + (defvar thing-at-point-url-regexp - (concat - "\\<\\(https?://\\|ftp://\\|gopher://\\|telnet://\\|wais://\\|file:/\\|s?news:\\|mailto:\\)" - thing-at-point-url-path-regexp) + (concat "\\<\\(" (mapconcat 'identity thing-at-point-uri-schemes "\\|") "\\)" + thing-at-point-url-path-regexp) "A regular expression probably matching a complete URL.") (defvar thing-at-point-markedup-url-regexp