summaryrefslogtreecommitdiff
path: root/lisp/ob-perl.el
diff options
context:
space:
mode:
authorSébastien Delafond <sdelafond@gmail.com>2015-11-27 17:40:50 +0100
committerSébastien Delafond <sdelafond@gmail.com>2015-11-27 17:40:50 +0100
commit002ec053efdb50d946a84c264b57b7023e14eca1 (patch)
tree278a6c1ad42f559292e680104f276804dc19b4b6 /lisp/ob-perl.el
parentc2164d4c4efe381b2689f455982bfc0586a09589 (diff)
parentf7ab8b6645e5b81dd3b1df053a3bf41b279696f4 (diff)
Merge tag 'upstream/8.3.2'
Upstream version 8.3.2
Diffstat (limited to 'lisp/ob-perl.el')
-rw-r--r--lisp/ob-perl.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ob-perl.el b/lisp/ob-perl.el
index ff4cbea..67d48d7 100644
--- a/lisp/ob-perl.el
+++ b/lisp/ob-perl.el
@@ -1,6 +1,6 @@
;;; ob-perl.el --- org-babel functions for perl evaluation
-;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
+;; Copyright (C) 2009-2015 Free Software Foundation, Inc.
;; Authors: Dan Davison
;; Eric Schulte
@@ -127,8 +127,8 @@ specifying a var of the same value."
(defun org-babel-perl-evaluate (session ibody &optional result-type result-params)
"Pass BODY to the Perl process in SESSION.
-If RESULT-TYPE equals 'output then return a list of the outputs
-of the statements in BODY, if RESULT-TYPE equals 'value then
+If RESULT-TYPE equals `output' then return a list of the outputs
+of the statements in BODY, if RESULT-TYPE equals `value' then
return the value of the last statement in BODY, as elisp."
(when session (error "Sessions are not supported for Perl"))
(let* ((body (concat org-babel-perl-preface ibody))