Reverse the introduction of @0 as a reference to the last row.

This commit is contained in:
Carsten Dominik 2008-12-18 23:05:21 +01:00
parent 9cd1518bad
commit 0805d7ec9f
3 changed files with 9 additions and 5 deletions

View File

@ -10,10 +10,16 @@
#+LINK_UP: index.html
#+LINK_HOME: http://orgmode.org
* Version 6.15
* Version 6.16
:PROPERTIES:
:VISIBILITY: content
:END:
This version reverses the introduction of @0 as a reference to
the last rwo in a table, because of a conflict with the use of
@0 for the current row.
* Version 6.15
** Overview
- All known LaTeX export issues fixed

View File

@ -1782,8 +1782,7 @@ Org also uses another, more general operator that looks like this:
@noindent
Column references can be absolute like @samp{1}, @samp{2},...@samp{N},
or relative to the current column like @samp{+1} or @samp{-2}. As a special
case, @samp{@@0} references the last data line in the table.
or relative to the current column like @samp{+1} or @samp{-2}.
The row specification only counts data lines and ignores horizontal
separator lines (hlines). You can use absolute row numbers

View File

@ -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 ()