* lisp/emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.

This commit is contained in:
Stefan Monnier 2012-06-04 10:08:33 -04:00
parent 093c025774
commit e364a2b7e1
2 changed files with 8 additions and 2 deletions

View file

@ -1,7 +1,11 @@
2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
2012-06-04 Chong Yidong <cyd@gnu.org>
* image.el (imagemagick-types-inhibit): Revert last change. Add
INFO and M.
* image.el (imagemagick-types-inhibit): Revert last change.
Add INFO and M.
(imagemagick-enabled-types): Remove CIN and EPS*.
2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>

View file

@ -227,6 +227,7 @@ The arguments of `cl-values' are the values
that the containing function should return.
\(fn &rest VALUES)")
(put 'cl-values 'byte-optimizer 'byte-compile-inline-expand)
(defalias 'cl-values-list #'identity
"Return multiple values, Common Lisp style, taken from a list.
@ -234,6 +235,7 @@ LIST specifies the list of values
that the containing function should return.
\(fn LIST)")
(put 'cl-values-list 'byte-optimizer 'byte-compile-inline-expand)
(defsubst cl-multiple-value-list (expression)
"Return a list of the multiple values produced by EXPRESSION.