[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/code-cells f5ee06c86c 1/2: Adapt to changed function si
|
From: |
ELPA Syncer |
|
Subject: |
[elpa] externals/code-cells f5ee06c86c 1/2: Adapt to changed function signature in Jupyter package |
|
Date: |
Sat, 18 Nov 2023 18:57:35 -0500 (EST) |
branch: externals/code-cells
commit f5ee06c86ce08bd6d924ef17ed19ed9ddd2d7ee9
Author: Augusto Stoffel <arstoffel@gmail.com>
Commit: Augusto Stoffel <arstoffel@gmail.com>
Adapt to changed function signature in Jupyter package
Closes #22.
---
code-cells.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code-cells.el b/code-cells.el
index 904430f31d..03065fb6f5 100644
--- a/code-cells.el
+++ b/code-cells.el
@@ -207,7 +207,7 @@ COMMAND."
;;; Code evaluation
(defcustom code-cells-eval-region-commands
- '((jupyter-repl-interaction-mode . jupyter-eval-region)
+ `((jupyter-repl-interaction-mode . ,(apply-partially 'jupyter-eval-region
nil))
(python-mode . python-shell-send-region)
(emacs-lisp-mode . eval-region)
(lisp-interaction-mode . eval-region))