emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [bug, master] Returned table column names broken after #+call funct


From: Miguel Ruiz
Subject: [O] [bug, master] Returned table column names broken after #+call function from lob-table-operations.org
Date: Fri, 26 Dec 2014 06:06:02 -0800

The following minimal example (emacs -Q) yields (key, t1c2, t2c2) as column 
names after #+call: table-operations-combine-merge[1] with org-master 
(release_8.3beta-686-g9528be); org-maint (release_8.2.10-29-g89a0ac) works as 
expected yielding (Col1, Col2, Col3).

[1] 
http://orgmode.org/w/?p=worg.git;a=blob_plain;f=org-contrib/babel/examples/lob-table-operations.org;hb=HEAD
 

TIA
Miguel.



#+begin_src emacs-lisp
(require 'cl)
(org-babel-lob-ingest "lob-table-operations.org")
#+end_src

#+RESULTS:
: 7

#+name: table1 
| Col1 | Col2 |
|------+------|
| A    |    2 |
| B    |    4 |
| C    |    6 |


#+name: table2 
| Col1 | Col3 |
|------+------|
|    1 |    2 |
|    3 |    4 |
|    5 |    6 |

#+call: table-operations-combine-merge(table1,table2) :colnames yes

#+RESULTS:
| key | t1c2 | t2c2 |
|-----+------+------|
|   1 |    2 |    2 |
|   3 |    4 |    4 |
|   5 |    6 |    6 |

____________________________________________________________
TRY FREE IM TOOLPACK at http://www.imtoolpack.com/default.aspx?rc=if5
Capture screenshots, upload images, edit and send them to your friends
through IMs, post on Twitter®, Facebook®, MySpace™, LinkedIn® – FAST!





reply via email to

[Prev in Thread] Current Thread [Next in Thread]