]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix `browse-url-default-scheme` custom :type
authorStefan Kangas <stefankangas@gmail.com>
Thu, 26 Oct 2023 21:58:05 +0000 (23:58 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Thu, 26 Oct 2023 22:02:22 +0000 (00:02 +0200)
* lisp/net/browse-url.el (browse-url-default-scheme): Fix custom
:type.

lisp/net/browse-url.el

index 7cbc8e569a572767c2cf470cd07ab0e81fad9fb4..df3f538a35438cc443ad4760ec82dee263e28b4e 100644 (file)
@@ -680,7 +680,9 @@ For example, when point is on an URL fragment like
 Note that if you set this to \"https\", websites that do not yet
 support HTTPS may not load correctly in your web browser.  Such
 websites are increasingly rare, but they do still exist."
-  :type 'string
+  :type '(choice (const :tag "HTTP" "http")
+                 (const :tag "HTTPS" "https")
+                 (string :tag "Something else" "https"))
   :version "29.1")
 
 (defun browse-url-url-at-point ()