summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Banel <tbanelwebmin@free.fr>2015-12-14 22:22:03 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-12-14 23:55:17 +0100
commitcfb82b7c62ee7cab37723ce1106abf6fcded286c (patch)
tree65a3779f68140a3f68c803e76ca6e0108e8bc28e
parent700b8e70f646f7240990475e022fd04cf2c5d656 (diff)
downloadorg-mode-cfb82b7c62ee7cab37723ce1106abf6fcded286c.tar.gz
org-table: Fix missing dollar bug revealed by commit 16c7594
* org-table.el (orgtbl-ascii-plot): Add missing dollar in formula.
-rw-r--r--lisp/org-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index c3593df..e6a11c3 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -5302,7 +5302,7 @@ characters width of the plot. ASK may also be the
(org-table-store-formulas
(cons
(cons
- (number-to-string (1+ col))
+ (concat "$" (number-to-string (1+ col)))
(format "'(%s $%s %s %s %s)"
"orgtbl-ascii-draw" col min max length))
(org-table-get-stored-formulas)))