aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2024-12-17 03:10:42 +0100
committerStefan Kangas2024-12-17 03:13:10 +0100
commit92041e15f4ad99ebebc40b082e40367a3aada7ba (patch)
tree3abf15876c585bb98295a29bd2d921cd114fe437
parent9fd96e2ab95d19bb7df7fb698a497d56f3cdb3af (diff)
downloademacs-92041e15f4ad99ebebc40b082e40367a3aada7ba.tar.gz
emacs-92041e15f4ad99ebebc40b082e40367a3aada7ba.zip
Minor doc fix for url-handler-regexp
* lisp/url/url-handlers.el (url-handler-regexp): Remove mention of obsolete internal protocol "about" (i.e. url-about.el). Reflow.
-rw-r--r--lisp/url/url-handlers.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el
index 9edc7865a74..863863c3696 100644
--- a/lisp/url/url-handlers.el
+++ b/lisp/url/url-handlers.el
@@ -1,6 +1,6 @@
1;;; url-handlers.el --- file-name-handler stuff for URL loading -*- lexical-binding:t -*- 1;;; url-handlers.el --- file-name-handler stuff for URL loading -*- lexical-binding:t -*-
2 2
3;; Copyright (C) 1996-1999, 2004-2024 Free Software Foundation, Inc. 3;; Copyright (C) 1996-2024 Free Software Foundation, Inc.
4 4
5;; Keywords: comm, data, processes, hypermedia 5;; Keywords: comm, data, processes, hypermedia
6 6
@@ -124,13 +124,13 @@ that URL in a buffer."
124(defcustom url-handler-regexp 124(defcustom url-handler-regexp
125 "\\`\\(?:https?\\|ftp\\|file\\|nfs\\|ssh\\|scp\\|rsync\\|telnet\\)://" 125 "\\`\\(?:https?\\|ftp\\|file\\|nfs\\|ssh\\|scp\\|rsync\\|telnet\\)://"
126 "Regular expression for URLs handled by `url-handler-mode'. 126 "Regular expression for URLs handled by `url-handler-mode'.
127When URL Handler mode is enabled, this regular expression is 127When URL Handler mode is enabled, this regular expression is added to
128added to `file-name-handler-alist'. 128`file-name-handler-alist'.
129 129
130Some valid URL protocols just do not make sense to visit 130Some valid URL protocols just do not make sense to visit interactively
131interactively (about, data, info, irc, mailto, etc.). This 131(data, info, irc, mailto, etc.). This regular expression avoids
132regular expression avoids conflicts with local files that look 132conflicts with local files that look like URLs (Gnus is particularly bad
133like URLs (Gnus is particularly bad at this)." 133at this)."
134 :group 'url 134 :group 'url
135 :type 'regexp 135 :type 'regexp
136 :version "25.1" 136 :version "25.1"