all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* rcirc-url-regexp bugfix
@ 2006-02-23  4:50 Ryan Yeske
  0 siblings, 0 replies; only message in thread
From: Ryan Yeske @ 2006-02-23  4:50 UTC (permalink / raw)


2006-02-22  Ryan Yeske  <rcyeske@gmail.com>

	* net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
	with "www".

*** rcirc.el	19 Feb 2006 16:49:04 -0800	1.16
--- rcirc.el	22 Feb 2006 20:45:37 -0800	
***************
*** 1635,1646 ****
  (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"))))
  	     (and (1+ (char "-a-zA-Z0-9_."))
  		  (or ".com" ".net" ".org")
  		  word-boundary))
--- 1635,1647 ----
  (defvar rcirc-url-regexp
    (rx-to-string
     `(and word-boundary
! 	 (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))

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-02-23  4:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-23  4:50 rcirc-url-regexp bugfix Ryan Yeske

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.