浏览代码

use curl instead of url-copy-file for downloading

pull/1/head
10sr 11 年前
父节点
当前提交
43595c602e
共有 1 个文件被更改,包括 18 次插入17 次删除
  1. +18
    -17
      emacs.el

+ 18
- 17
emacs.el 查看文件

@@ -45,27 +45,28 @@ otherwise the path where the library installed."

(defun download-file (url path &optional ok-if-already-exists)
"Download file from URL and output to PATH."
(or (ignore-errors
(or
(let ((curl (executable-find "curl")))
(when curl
(if (and (not ok-if-already-exists)
(file-exists-p path))
nil
(and (eq 0
(call-process curl
nil
nil
nil
"--output"
path
url
))
path))))
(ignore-errors
(require 'url)
(url-copy-file url
path
ok-if-already-exists)
path)
(let ((curl (executable-find "curl")))
(when curl
(if (and (not ok-if-already-exists)
(file-exists-p path))
nil
(and (eq 0
(call-process curl
nil
nil
nil
"--output"
path
url
))
path))))))
path)))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; autoload


正在加载...
取消
保存