From 7fdfd13e96a4b9961e805c79dae12921e4cfaac9 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Thu, 1 Jul 2010 15:09:34 -0700 Subject: [PATCH] babel: cleaner initialization of org-babel-python-buffers * lisp/babel/langs/ob-python.el (org-babel-python-buffers): technically this should be initialized as an alist, although in practice this doesn't really make any functional difference because whenever this variable is used it has new values properly assigned to it, and it is supposed to start basically empty. --- lisp/babel/langs/ob-python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/babel/langs/ob-python.el b/lisp/babel/langs/ob-python.el index cbd0837d2..15857b71e 100644 --- a/lisp/babel/langs/ob-python.el +++ b/lisp/babel/langs/ob-python.el @@ -117,7 +117,7 @@ Emacs-lisp table, otherwise return the results as a string." "'" "\"" results t)))))) results)))) -(defvar org-babel-python-buffers '(:default . nil)) +(defvar org-babel-python-buffers '((:default . nil))) (defun org-babel-python-session-buffer (session) "Return the buffer associated with SESSION."