aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-01-20 03:56:50 +0000
committerGlenn Morris2008-01-20 03:56:50 +0000
commitf2357ea13b8a734d22daea14cabe8e8e2fa5713e (patch)
treeaf5ad19104a447d19faad361059f56be327ce37b
parentc884b4d795f85c56aede59eb8b4cf7e17003d5e9 (diff)
downloademacs-f2357ea13b8a734d22daea14cabe8e8e2fa5713e.tar.gz
emacs-f2357ea13b8a734d22daea14cabe8e8e2fa5713e.zip
Martin Svenson <phromo at gmail.com> (tiny change)
(python-imports): Default to "None".
-rw-r--r--lisp/progmodes/python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index bef282f5e98..3a393a7a4eb 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1889,7 +1889,8 @@ Uses `python-beginning-of-block', `python-end-of-block'."
1889 1889
1890;;;; Completion. 1890;;;; Completion.
1891 1891
1892(defvar python-imports nil 1892;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-01/msg00076.html
1893(defvar python-imports "None"
1893 "String of top-level import statements updated by `python-find-imports'.") 1894 "String of top-level import statements updated by `python-find-imports'.")
1894(make-variable-buffer-local 'python-imports) 1895(make-variable-buffer-local 'python-imports)
1895 1896