org-table: Fix radio tables

* lisp/org-table.el (orgtbl-to-generic): Strip text properties from
  output.

Reported-by: "Charles C. Berry" <ccberry@ucsd.edu>
<http://permalink.gmane.org/gmane.emacs.orgmode/101425>
This commit is contained in:
Nicolas Goaziou 2015-09-23 22:58:25 +02:00
parent 3e1bccc4a5
commit 2e1b93db41
1 changed files with 1 additions and 1 deletions

View File

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