el-get/test/el-get-issue-303.el
Dimitri Fontaine 8db0c4d49b Fix the refactoring so that it actually works.
This includes teaching methods that they now work with a symbolp PACKAGE,
some more cleaning up, and some load-path adjustments now that a part of the
code is in a subdirectory (methods).

Also include some of the tests used to convince oneself that the refactoring
didn't break any and all use cases for el-get, with some rough documentation
about how to use them.
2011-09-22 21:48:11 +02:00

19 lines
578 B
EmacsLisp

;; https://github.com/dimitri/el-get/issues/303
;;
;; error in process sentinel
(let (
(debug-on-error t)
(debug-ignored-errors '())
;; (el-get-byte-compile nil)
(el-get-verbose t)
(el-get-default-process-sync t)
(el-get-sources
'((:name xmlunicode :depends
(unichars)
:type http :url "http://nwalsh.com/emacs/xmlchars/xmlunicode.el")
(:name unichars :type http :url "http://nwalsh.com/emacs/xmlchars/unichars.el"))))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(require 'el-get)
(el-get-install "xmlunicode"))