>From 19f0712d8bdefb76f54218068599b5abce6b18b9 Mon Sep 17 00:00:00 2001 From: Thierry Banel Date: Mon, 14 Dec 2015 22:22:03 +0100 Subject: [PATCH] Fix missing dollar bug revealed by commit 16c7594 * org-table.el (orgtbl-ascii-plot): add missing dollar in formula --- lisp/org-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index 474a44f..265e74b 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -5295,7 +5295,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))) -- 2.1.4