do not use mapcar* for transposing tables
commit30581835bdfe172744b51130ccc9075ca2080b32
authorAchim Gratz <Stromeko@Stromeko.DE>
Fri, 21 Jun 2013 20:37:51 +0000 (21 22:37 +0200)
committerAchim Gratz <Stromeko@Stromeko.DE>
Thu, 27 Jun 2013 18:17:22 +0000 (27 20:17 +0200)
treebf0bb20c25ed4002dba6a8e5b787b761c73ff105
parent21d1d4d1371c46f463a113be9fe8f22a18e4e880
do not use mapcar* for transposing tables

* lisp/ob-core.el (org-babel-get-rownames),
  lisp/org-table.el (org-table-transpose-table-at-point): Replace the
  inadvertent use of mapcar* (from cl) by plain mapcar and direct cons
  manipulation.

The error was not caught at compilation time since both source files
require cl during compilation for using cl macros.  These were the
only uses of mapcar* in Org, but I didn't check for other cl
_functions_ (as opposed to macros, which would need to be checked if
their implementation uses cl functions).
lisp/ob-core.el
lisp/org-table.el