diff options
| author | Glenn Morris | 2018-03-22 14:37:45 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-03-22 14:37:45 -0400 |
| commit | a6a821d29bda3e45fb26289e6119359ea3b91ebb (patch) | |
| tree | 699a1895314fa0fadc050ed7c040ed518fbe1859 | |
| parent | 7c993c34b048dbdcb2e79d8989935cce05c34ce2 (diff) | |
| download | emacs-a6a821d29bda3e45fb26289e6119359ea3b91ebb.tar.gz emacs-a6a821d29bda3e45fb26289e6119359ea3b91ebb.zip | |
* lisp/org/ob-lisp.el (org-babel-lisp-eval-fn): Tweak type.
Avoids type mismatch when relevant library is not present/loaded.
| -rw-r--r-- | lisp/org/ob-lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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'." | |||
| 54 | :group 'org-babel | 54 | :group 'org-babel |
| 55 | :version "26.1" | 55 | :version "26.1" |
| 56 | :package-version '(Org . "9.0") | 56 | :package-version '(Org . "9.0") |
| 57 | :type 'function) | 57 | :type 'symbol) |
| 58 | 58 | ||
| 59 | (defcustom org-babel-lisp-dir-fmt | 59 | (defcustom org-babel-lisp-dir-fmt |
| 60 | "(let ((*default-pathname-defaults* #P%S\n)) %%s\n)" | 60 | "(let ((*default-pathname-defaults* #P%S\n)) %%s\n)" |