Skip to content

Commit

Permalink
Fix parsing of nongnu-elpa recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed Jan 16, 2023
1 parent ce7bb7a commit 6848c14
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion straight.el
Original file line number Diff line number Diff line change
Expand Up @@ -3399,7 +3399,11 @@ Otherwise, return nil."

(defun straight-recipes-nongnu-elpa-list ()
"Return a list of NonGNU ELPA recipe names."
(mapcar (lambda (it) (symbol-name (car it)))
(mapcar (lambda (it)
(setq it (car it))
(when (symbolp it)
(setq it (symbol-name it)))
it)
(straight-recipes-nongnu-elpa--recipes)))

(defun straight-recipes-nongnu-elpa-version ()
Expand Down

0 comments on commit 6848c14

Please sign in to comment.