0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

org-table: Fix missing dollar bug revealed by commit 16c7594

* org-table.el (orgtbl-ascii-plot): Add missing dollar in formula.
This commit is contained in:
Thierry Banel 2015-12-14 22:22:03 +01:00 committed by Nicolas Goaziou
parent 700b8e70f6
commit cfb82b7c62

View file

@ -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)))