Martin Svenson <phromo at gmail.com> (tiny change)

(python-imports): Default to "None".
This commit is contained in:
Glenn Morris 2008-01-20 03:57:19 +00:00
parent 569382c2b4
commit 9ce3eb9a3f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-01-20 Martin Svenson <phromo@gmail.com> (tiny change)
* progmodes/python.el (python-imports): Default to "None".
2008-01-19 Dan Nicolaescu <dann@ics.uci.edu>
* progmodes/sh-script.el (sh-basic-offset):

View file

@ -1866,7 +1866,8 @@ Uses `python-beginning-of-block', `python-end-of-block'."
;;;; Completion.
(defvar python-imports nil
;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-01/msg00076.html
(defvar python-imports "None"
"String of top-level import statements updated by `python-find-imports'.")
(make-variable-buffer-local 'python-imports)