1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-29 09:43:56 -07:00
emacs/test/automated/data/package/archive-contents
Dmitry Gutov 1197f2e665 Fix bug#16873
* lisp/emacs-lisp/package.el (package-desc): Use the contents of the
quoted form, not its cdr.
2014-03-22 10:43:30 +02:00

17 lines
678 B
Text

(1
(simple-single .
[(1 3)
nil "A single-file package with no dependencies" single
((:url . "http://doodles.au")
(:keywords quote ("frobnicate")))])
(simple-depend .
[(1 0)
((simple-single (1 3))) "A single-file package with a dependency." single])
(simple-two-depend .
[(1 1)
((simple-depend (1 0)) (simple-single (1 3)))
"A single-file package with two dependencies." single])
(multi-file .
[(0 2 3)
nil "Example of a multi-file tar package" tar
((:url . "http://puddles.li"))]))