Do quote-stripping using eval, not cdr

This commit is contained in:
Ryan C. Thompson 2012-02-22 15:01:05 -08:00
parent 9d51738a20
commit 6f60c5ba4e

View File

@ -357,7 +357,7 @@ which defaults to the first element in `el-get-recipe-path'."
"`eval' FORM for PACKAGE and report about FNAME when `el-get-verbose'"
(let* (;; Auto-strip quoting from form before doing anything else
(form (if (equal (car-safe form) 'quote)
(prog1 (cdr form)
(prog1 (eval form)
(warn "The :%s form for package %s is quoted unnecessarily."
fname package))
form))