From: Glenn Morris Date: Thu, 22 Mar 2018 18:37:45 +0000 (-0400) Subject: * lisp/org/ob-lisp.el (org-babel-lisp-eval-fn): Tweak type. X-Git-Tag: emacs-26.1-rc1~52 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6a821d29bda3e45fb26289e6119359ea3b91ebb;p=emacs.git * lisp/org/ob-lisp.el (org-babel-lisp-eval-fn): Tweak type. Avoids type mismatch when relevant library is not present/loaded. --- diff --git a/lisp/org/ob-lisp.el b/lisp/org/ob-lisp.el index c156ca34a7c..d4a7c37133d 100644 --- a/lisp/org/ob-lisp.el +++ b/lisp/org/ob-lisp.el @@ -54,7 +54,7 @@ Valid values include `slime-eval' and `sly-eval'." :group 'org-babel :version "26.1" :package-version '(Org . "9.0") - :type 'function) + :type 'symbol) (defcustom org-babel-lisp-dir-fmt "(let ((*default-pathname-defaults* #P%S\n)) %%s\n)"