diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2014-03-22 10:43:30 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2014-03-22 10:43:30 +0200 |
commit | 1197f2e66501837c96d0a5cc627e2791878066f2 (patch) | |
tree | e864822261e94119a26c0a22a44e1bd54895bfcd /lisp/emacs-lisp/package.el | |
parent | 4568178886420e5dea897a3ff1945b4fc8a4a680 (diff) | |
download | emacs-1197f2e66501837c96d0a5cc627e2791878066f2.tar.gz emacs-1197f2e66501837c96d0a5cc627e2791878066f2.tar.bz2 emacs-1197f2e66501837c96d0a5cc627e2791878066f2.zip |
Fix bug#16873
* lisp/emacs-lisp/package.el (package-desc): Use the contents of the
quoted form, not its cdr.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index ae2c2862887..480fddbd320 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -334,7 +334,7 @@ contrast, `package-user-dir' contains packages for personal use." (when value (push (cons (car rest-plist) (if (eq (car-safe value) 'quote) - (cdr value) + (cadr value) value)) alist)))) (setq rest-plist (cddr rest-plist))) |