mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
org-table.el: Fix bug when converting remote table references.
* org-table.el (org-table-convert-refs-to-rc): Fix bug when converting remote table references. Thanks to Jose E. Marchesi who provided a preliminary patch for this.
This commit is contained in:
parent
7dc4d7cebc
commit
24c9083bd5
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user