aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Garbs2017-03-08 21:13:57 +0100
committerTeemu Likonen2017-04-17 07:07:12 +0300
commitc68cce94c46140f2ad1411550427d3cc2658ec02 (patch)
tree739ed14e0ea881e4fd311712c8698070b63b5ce3
parent8750a4546a1da4f03243df12c7e5b89f2c32d27e (diff)
downloademacs-c68cce94c46140f2ad1411550427d3cc2658ec02.tar.gz
emacs-c68cce94c46140f2ad1411550427d3cc2658ec02.zip
; Fix typo in error messages (Bug#26034)
Copyright-paperwork-exempt: yes
-rw-r--r--lisp/org/ob-C.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/ob-C.el b/lisp/org/ob-C.el
index 8738824aa7a..77cfd537857 100644
--- a/lisp/org/ob-C.el
+++ b/lisp/org/ob-C.el
@@ -157,12 +157,12 @@ it's header arguments."
157(defun org-babel-prep-session:C (session params) 157(defun org-babel-prep-session:C (session params)
158 "This function does nothing as C is a compiled language with no 158 "This function does nothing as C is a compiled language with no
159support for sessions" 159support for sessions"
160 (error "C is a compiled languages -- no support for sessions")) 160 (error "C is a compiled language -- no support for sessions"))
161 161
162(defun org-babel-load-session:C (session body params) 162(defun org-babel-load-session:C (session body params)
163 "This function does nothing as C is a compiled language with no 163 "This function does nothing as C is a compiled language with no
164support for sessions" 164support for sessions"
165 (error "C is a compiled languages -- no support for sessions")) 165 (error "C is a compiled language -- no support for sessions"))
166 166
167;; helper functions 167;; helper functions
168 168