From 2e1b93db418e0ab2b0f481543187960e0d3f92ce Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 23 Sep 2015 22:58:25 +0200 Subject: [PATCH] org-table: Fix radio tables * lisp/org-table.el (orgtbl-to-generic): Strip text properties from output. Reported-by: "Charles C. Berry" --- 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 0e42d2738..ba7969057 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -4860,7 +4860,7 @@ This may be either a string or a function of two arguments: ;; and filters. (let ((output (org-export-data-with-backend data custom-backend info))) ;; Remove final newline. - (if (org-string-nw-p output) (substring output 0 -1) "")))) + (if (org-string-nw-p output) (substring-no-properties output 0 -1) "")))) (defun org-table--generic-apply (value name &optional with-cons &rest args) (cond ((null value) nil) -- 2.11.4.GIT