org-table.el (org-table-recalculate): Generate user error if an hline relative reference is use on the LHS of a formula
* org-table.el (org-table-recalculate): Generate user error if an hline relative reference is use on the LHS of a formula. TINYCHANGE
This commit is contained in:
parent
3231e14e23
commit
a2c71a6e35
|
@ -3016,6 +3016,8 @@ known that the table will be realigned a little later anyway."
|
||||||
;; Insert constants in all formulas
|
;; Insert constants in all formulas
|
||||||
(setq eqlist
|
(setq eqlist
|
||||||
(mapcar (lambda (x)
|
(mapcar (lambda (x)
|
||||||
|
(if (string-match "^@-?I+" (car x))
|
||||||
|
(user-error "Can't assign to hline relative reference"))
|
||||||
(when (string-match "\\`$[<>]" (car x))
|
(when (string-match "\\`$[<>]" (car x))
|
||||||
(setq lhs1 (car x))
|
(setq lhs1 (car x))
|
||||||
(setq x (cons (substring
|
(setq x (cons (substring
|
||||||
|
|
Loading…
Reference in New Issue