# HG changeset patch # User Glenn Morris # Date 1179549992 0 # Node ID c6798459217001f181370a192ba696b452fb2886 # Parent 80eae28ab5d7935a2c5d0bb8d6e9f5f5833c0079 Kevin Ryde (Info-fontify-node): Fontify https as well as http and ftp. diff -r 80eae28ab5d7 -r c67984592170 lisp/info.el --- a/lisp/info.el Sat May 19 04:45:30 2007 +0000 +++ b/lisp/info.el Sat May 19 04:46:32 2007 +0000 @@ -4074,7 +4074,8 @@ ;; Fontify http and ftp references (goto-char (point-min)) (when not-fontified-p - (while (re-search-forward "[hf]t?tp://[^ \t\n\"`({<>})']+" nil t) + (while (re-search-forward "\\(https?\\|ftp\\)://[^ \t\n\"`({<>})']+" + nil t) (add-text-properties (match-beginning 0) (match-end 0) '(font-lock-face info-xref mouse-face highlight