From 9b22f597a000a85b18ab6aa6906d47f081a083d3 Mon Sep 17 00:00:00 2001 From: Jack Kamm Date: Tue, 4 Feb 2020 06:53:58 -0800 Subject: [PATCH] ob-python: Remove unused variable * lisp/ob-python.el (org-babel-python-evaluate-session): Remove unused lexical variable `last-indent' that was causing a compilation warning --- lisp/ob-python.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/ob-python.el b/lisp/ob-python.el index 5f71577cb..de718b04b 100644 --- a/lisp/ob-python.el +++ b/lisp/ob-python.el @@ -313,7 +313,6 @@ If RESULT-TYPE equals `output' then return standard output as a string. If RESULT-TYPE equals `value' then return the value of the last statement in BODY, as elisp." (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5))) - (last-indent 0) (input-body (lambda (body) (dolist (line (split-string body "[\r\n]")) (insert line)