Fix the URL to el-get-install.el.

This commit is contained in:
Lou, Yufan 2014-09-06 01:04:43 -04:00
parent 96b960e84a
commit a1bb9279c4

View File

@ -94,7 +94,7 @@ your `user-init-file`).
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get.
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(goto-char (point-max))
(eval-print-last-sexp)))
@ -142,7 +142,7 @@ Here is the basic setup to add to your `user-init-file` (`.emacs`):
(unless (require 'el-get nil 'noerror)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.github.com/dimitri/el-get/master/el-get-install.el")
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el")
(goto-char (point-max))
(eval-print-last-sexp)))