瀏覽代碼

ob-lisp: Default evaluator is SLIME

* lisp/ob-lisp.el (org-babel-lisp-eval-fn): Set default value to
  "slime-eval".
Nicolas Goaziou 9 年之前
父節點
當前提交
1581da82be
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lisp/ob-lisp.el

+ 2 - 2
lisp/ob-lisp.el

@@ -38,12 +38,12 @@
 ;;; Code:
 ;;; Code:
 (require 'ob)
 (require 'ob)
 
 
-(defcustom org-babel-lisp-eval-fn "sly-eval"
+(defcustom org-babel-lisp-eval-fn "slime-eval"
   "The function to be called to evaluate code on the Lisp side.
   "The function to be called to evaluate code on the Lisp side.
 It can be set to either \"sly-eval\" or \"slime-eval\"."
 It can be set to either \"sly-eval\" or \"slime-eval\"."
   :group 'org-babel
   :group 'org-babel
   :version "25.1"
   :version "25.1"
-  :package-version '(Org . "8.3")
+  :package-version '(Org . "9.0")
   :options '("sly-eval" "slime-eval")
   :options '("sly-eval" "slime-eval")
   :type 'stringp)
   :type 'stringp)