mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Support HTTPS in ido-file-internal
* lisp/ido.el (ido-file-internal): Support HTTPS.
This commit is contained in:
parent
aa79a5fc0f
commit
ce9d1d3f4d
1 changed files with 1 additions and 1 deletions
|
|
@ -2326,7 +2326,7 @@ If cursor is not at the end of the user input, move to end of input."
|
|||
(if (eq ido-use-filename-at-point 'guess)
|
||||
(ffap-guesser)
|
||||
(ffap-string-at-point))))
|
||||
(not (string-match "\\`http:/" fn)))
|
||||
(not (string-match (rx bos "http" (? "s") ":/") fn)))
|
||||
(let ((absolute-fn (expand-file-name fn)))
|
||||
(cond
|
||||
((file-directory-p absolute-fn)
|
||||
|
|
|
|||
Loading…
Reference in a new issue