From a91eae6d5202f329eefe3fb9188c677b7bd12b13 Mon Sep 17 00:00:00 2001 From: Christian Garbs Date: Wed, 8 Mar 2017 21:13:57 +0100 Subject: [PATCH] Backport commit c68cce94c from Emacs ; Fix typo in error messages (Bug#26034) c68cce94c46140f2ad1411550427d3cc2658ec02 Christian Garbs Mon Apr 17 07:07:12 2017 +0300 TINYCHANGE --- lisp/ob-C.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ob-C.el b/lisp/ob-C.el index 795bcb2b7..f2af5b3fb 100644 --- a/lisp/ob-C.el +++ b/lisp/ob-C.el @@ -278,12 +278,12 @@ its header arguments." (defun org-babel-prep-session:C (_session _params) "This function does nothing as C is a compiled language with no support for sessions" - (error "C is a compiled languages -- no support for sessions")) + (error "C is a compiled language -- no support for sessions")) (defun org-babel-load-session:C (_session _body _params) "This function does nothing as C is a compiled language with no support for sessions" - (error "C is a compiled languages -- no support for sessions")) + (error "C is a compiled language -- no support for sessions")) ;; helper functions