Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
194a8f5c
Commit
194a8f5c
authored
Oct 26, 2023
by
Stefan Kangas
Browse files
Fix `browse-url-default-scheme` custom :type
* lisp/net/browse-url.el (browse-url-default-scheme): Fix custom :type.
parent
967ee6a7
Pipeline
#26937
failed with stages
in 59 minutes and 35 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/net/browse-url.el
lisp/net/browse-url.el
+3
-1
No files found.
lisp/net/browse-url.el
View file @
194a8f5c
...
...
@@ -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
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment