mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-04 08:47:11 +00:00
2008-12-22 Carsten Dominik <dominik@science.uva.nl>
* org-table.el (org-table-get-formula): Only ask to overwrite field formula if there really is one.
This commit is contained in:
parent
830334b1a4
commit
cff4f506ea
@ -1722,12 +1722,13 @@ When NAMED is non-nil, look for a named equation."
|
||||
(ref (format "@%d$%d" (org-table-current-dline)
|
||||
(org-table-current-column)))
|
||||
(refass (assoc ref stored-list))
|
||||
(nameass (assoc name stored-list))
|
||||
(scol (if named
|
||||
(if (and name (not (string-match "^LR[0-9]+$" name)))
|
||||
name
|
||||
ref)
|
||||
(int-to-string (org-table-current-column))))
|
||||
(dummy (and (or name refass) (not named)
|
||||
(dummy (and (or nameass refass) (not named)
|
||||
(not (y-or-n-p "Replace field formula with column formula? " ))
|
||||
(error "Abort")))
|
||||
(name (or name ref))
|
||||
|
Loading…
Reference in New Issue
Block a user