el-get/test/el-get-issue-289.el
Ryan C. Thompson 1fb104010c Use setq instead of let in tests
This makes it easier to run tests interactively and inspect the
results afterward, because the variables such as "el-get-sources" that
were set for the tests are still bound to the values they had during
the test.
2012-03-18 12:33:04 -07:00

15 lines
497 B
EmacsLisp

;; https://github.com/dimitri/el-get/issues/289
;;
;; flymake-fringe-icons recipe won't initialize
;;
;; Because it eagerly loads flymake-fringe-icons by using :features, and
;; that recipe require's fringe-helper, which isn't yet init'ed. The
;; solution is either to remove :features from the flymake-fringe-icons
;; recipe or to make el-get-init respect the :depends clause.
(setq debug-on-error t)
(setq el-get-byte-compile nil
el-get-verbose t)
(el-get 'sync '(flymake-fringe-icons))