summaryrefslogtreecommitdiff
path: root/lisp/org/ob-table.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/org/ob-table.el')
-rw-r--r--lisp/org/ob-table.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/org/ob-table.el b/lisp/org/ob-table.el
index 3132965c702..77daf7be4ef 100644
--- a/lisp/org/ob-table.el
+++ b/lisp/org/ob-table.el
@@ -62,7 +62,8 @@ If STRING ends in a newline character, then remove the newline
character and replace it with ellipses."
(if (and (stringp string) (string-match "[\n\r]\\(.\\)?" string))
(concat (substring string 0 (match-beginning 0))
- (when (match-string 1 string) "...")) string))
+ (when (match-string 1 string) "..."))
+ string))
(defmacro org-sbe (source-block &rest variables)
"Return the results of calling SOURCE-BLOCK with VARIABLES.
@@ -147,6 +148,4 @@ as shown in the example below.
(provide 'ob-table)
-
-
;;; ob-table.el ends here