From: Glenn Morris Date: Sun, 20 Jan 2008 03:57:19 +0000 (+0000) Subject: Martin Svenson (tiny change) X-Git-Tag: emacs-pretest-22.1.90~62 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9ce3eb9a3f063114a137e6c25328d0d100760fcb;p=emacs.git Martin Svenson (tiny change) (python-imports): Default to "None". --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8f7c6e73504..20aadb3c658 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-01-20 Martin Svenson (tiny change) + + * progmodes/python.el (python-imports): Default to "None". + 2008-01-19 Dan Nicolaescu * progmodes/sh-script.el (sh-basic-offset): diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 18494681a9d..c82a55ace8e 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -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)