From: Carsten Dominik Date: Thu, 18 Dec 2008 22:57:33 +0000 (+0000) Subject: 2008-12-18 Carsten Dominik X-Git-Tag: emacs-pretest-23.0.90~1022 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17a0aa82253c19a14a743c7fcba33beb73a68e52;p=emacs.git 2008-12-18 Carsten Dominik * org-table.el (org-table-get-specials): Revert introduction of @0 as reference of the last table row, because of conflicts. --- diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index da24c7ac4f7..2c0b2a18712 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,8 @@ +2008-12-18 Carsten Dominik + + * org.texi (References): Remove mentioning of @0 as reference for the + last line, this has been reverted in the Lisp sources. + 2008-12-17 Juanma Barranquero * makefile.w32-in (INFO_TARGETS, clean): Add sasl. 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 ()