[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/net/rcirc.el
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/net/rcirc.el |
Date: |
Fri, 03 Mar 2006 11:43:27 +0000 |
Index: emacs/lisp/net/rcirc.el
diff -u emacs/lisp/net/rcirc.el:1.16 emacs/lisp/net/rcirc.el:1.17
--- emacs/lisp/net/rcirc.el:1.16 Fri Feb 17 11:19:00 2006
+++ emacs/lisp/net/rcirc.el Fri Mar 3 11:43:27 2006
@@ -1635,12 +1635,13 @@
(defvar rcirc-url-regexp
(rx-to-string
`(and word-boundary
- (or "www."
- (and (or "http" "https" "ftp" "file" "gopher" "news" "telnet"
- "wais" "mailto")
- "://"
- (1+ (char "-a-zA-Z0-9_."))
- (optional ":" (1+ (char "0-9"))))
+ (or (and
+ (or (and (or "http" "https" "ftp" "file" "gopher" "news"
+ "telnet" "wais" "mailto")
+ "://")
+ "www.")
+ (1+ (char "-a-zA-Z0-9_."))
+ (optional ":" (1+ (char "0-9"))))
(and (1+ (char "-a-zA-Z0-9_."))
(or ".com" ".net" ".org")
word-boundary))
- [Emacs-diffs] Changes to emacs/lisp/net/rcirc.el,
Eli Zaretskii <=