Browse Source

org-babel: no quotes around strings in table output -- Thanks to Francesco Pizzolante

Eric Schulte 16 years ago
parent
commit
0ec408cd9a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/babel/lisp/org-babel.el

+ 1 - 1
contrib/babel/lisp/org-babel.el

@@ -739,7 +739,7 @@ code ---- the results are extracted in the syntax of the source
 			     (if (and (listp (car result))
 			     (if (and (listp (car result))
                                       (listp (cdr (car result))))
                                       (listp (cdr (car result))))
 				 result (list result))
 				 result (list result))
-			     '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
+			     '(:fmt (lambda (cell) (format "%s" cell)))) "\n"))
 	    (forward-line -1) (org-cycle))
 	    (forward-line -1) (org-cycle))
 	   ((member "file" result-params)
 	   ((member "file" result-params)
 	    (insert result))
 	    (insert result))