diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2008-12-18 22:56:24 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2008-12-18 22:56:24 +0000 |
commit | 054b7a4111f12b94d6b7b52267a1bb381a830a95 (patch) | |
tree | 234e2233a753aea25748ed7526d54cd082321bea /lisp | |
parent | 710e7f1c5dbe71e02222c0675f4949b7375bb010 (diff) | |
download | emacs-054b7a4111f12b94d6b7b52267a1bb381a830a95.tar.gz |
2008-12-18 Carsten Dominik <dominik@science.uva.nl>
* org-table.el (org-table-get-specials): Revert introduction of @0
as reference of the last table row, because of conflicts.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/org/org-table.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index c342cb9564c..12d2e6ef98f 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el @@ -1897,8 +1897,7 @@ For all numbers larger than LIMIT, shift them by DELTA." (beginning-of-line 2) (setq l (1+ l))) (setq org-table-current-line-types (apply 'vector (nreverse types)) - org-table-dlines (apply 'vector (cons (car dlines) - (nreverse dlines))) + org-table-dlines (apply 'vector (cons nil (nreverse dlines))) org-table-hlines (apply 'vector (cons nil (nreverse hlines))))))) (defun org-table-maybe-eval-formula () |