diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-05-22 08:23:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-05-22 08:23:36 +0000 |
commit | 2cf0c0db339da02d678e5aa08e9f2cbd9bcf262c (patch) | |
tree | 36503c931977847e18c89fc89de82c47c7adbe74 /lisp | |
parent | 0daf086a96c00e915cc3c34575ee780abd67b188 (diff) | |
download | emacs-2cf0c0db339da02d678e5aa08e9f2cbd9bcf262c.tar.gz |
(Info-fontify-node): Match https also.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index b9216b903ec..3b709abca37 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -4074,7 +4074,7 @@ the variable `Info-file-list-for-emacs'." ;; 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 |