Fix el-get-install-or-init-info, per #418.

This commit is contained in:
Dimitri Fontaine 2011-10-03 22:06:40 +02:00
parent 2ee54e384f
commit 3d2f4c5e63
2 changed files with 11 additions and 1 deletions

View File

@ -171,7 +171,7 @@ recursion.
(shell-quote-argument
(if (string= (substring infofile -5) ".info")
infofile
(concat infofile ".info")))) infodir-rel t nil t))))
(concat infofile ".info"))))) infodir-rel t nil t)))
(t
(error

10
test/el-get-issue-418.el Normal file
View File

@ -0,0 +1,10 @@
;; https://github.com/dimitri/el-get/issues/418
;;
;; info installation broken
(let ((debug-on-error t)
(el-get-default-process-sync t)
(el-get-verbose t)
(debug-ignored-errors '()))
(require 'el-get)
(el-get 'sync '(el-get magit)))