From 61eedb852fe1ca80f28d2bdd0c069a5fa702b6b9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 24 Jan 2015 23:20:46 +0100 Subject: [PATCH] ob-core: Fix error messages * lisp/ob-core.el (org-babel--script-escape-inner, org-babel-script-escape): Error messages do not end with a full stop. --- lisp/ob-core.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index a8e59380e..6c25d743b 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -2730,13 +2730,13 @@ block but are passed literally to the \"example-block\"." (t (cons ch out)))))) (string-to-list str)) (when (or in-single in-double) - (error "Unterminated string in `org-babel-script-escape'.")) + (error "Unterminated string in `org-babel-script-escape'")) (apply #'string (reverse out)))) (defun org-babel-script-escape (str &optional force) "Safely convert tables into elisp lists." (unless (stringp str) - (error "`org-babel-script-escape' expects a string.")) + (error "`org-babel-script-escape' expects a string")) (let ((escaped (cond ((and (> (length str) 2) -- 2.11.4.GIT