Reverse the introduction of @0 as a reference to the last row.
This commit is contained in:
parent
9cd1518bad
commit
0805d7ec9f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ()
|
||||
|
|
Loading…
Reference in New Issue