소스 검색

fix bug

pull/1/head
10sr 11 년 전
부모
커밋
fba38a2a92
1개의 변경된 파일15개의 추가작업 그리고 13개의 파일을 삭제
  1. +15
    -13
      emacs.el

+ 15
- 13
emacs.el 파일 보기

@@ -76,19 +76,21 @@ otherwise the path where the library installed."
path
ok-if-already-exists)
path)
(ignore-errors
(let ((curl (executable-find "curl")))
(when curl
(if (and (not ok-if-already-exists)
(file-exists-p path))
nil
(eq 0
(call-process curl
nil
nil
nil
"--output"
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))))))

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


불러오는 중...
취소
저장