Hi Jose,
[email protected] (Jose E. Marchesi) writes:
> i.e. the old version was not converting the A0 coordinates to rc
> coordinates.
thanks a lot for the detailed explanations.
I've just pushed a minimal fix for this:
diff --git a/lisp/org-table.el b/lisp/org-table.el
index d8aba8b..b6bc54a 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -3236,7 +3236,7 @@ Parameters get priority."
Works for single references, but also for entire formulas and even the
full TBLFM line."
(let ((start 0))
- (while (string-match
"\\<\\([a-zA-Z]+\\)\\([0-9]+\\>\\|&\\)\\|\\(;[^\r\n:]+\\|\\<remote([^)]*)\\)" s
start)
+ (while (string-match
"\\<\\([a-zA-Z]+\\)\\([0-9]+\\>\\|&\\)\\|\\(;[^\r\n:]+\\|\\<remote([^,)]*)\\)"
s start)
(cond
((match-end 3)
;; format match, just advance
--
Bastien