Fix bug#16873
* lisp/emacs-lisp/package.el (package-desc): Use the contents of the quoted form, not its cdr.
This commit is contained in:
parent
4568178886
commit
1197f2e665
4 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
|
||||
|
||||
* emacs-lisp/package.el (package-desc): Use the contents of the
|
||||
quoted form, not its cdr. (Bug#16873)
|
||||
|
||||
2014-03-22 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
|
||||
|
|
|
@ -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)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue