aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorStefan Monnier2007-05-08 01:35:26 +0000
committerStefan Monnier2007-05-08 01:35:26 +0000
commit11c4b29d3a3c1f3491e0822eb50fc3c285a047d2 (patch)
tree847dcead3485c7b0c37a9ea92ee80c0dd5e6a745 /lisp/progmodes/python.el
parentce55f97ce30848064903b0e6ceab1f7f43c690a1 (diff)
downloademacs-11c4b29d3a3c1f3491e0822eb50fc3c285a047d2.tar.gz
emacs-11c4b29d3a3c1f3491e0822eb50fc3c285a047d2.zip
(python-guess-indent): Check non-nullness before comparing indent against
the 2..8 interval.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index e57c7e639c9..17d30e0d972 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -461,7 +461,7 @@ Set `python-indent' locally to the value guessed."
461 (let ((initial (current-indentation))) 461 (let ((initial (current-indentation)))
462 (if (zerop (python-next-statement)) 462 (if (zerop (python-next-statement))
463 (setq indent (- (current-indentation) initial))) 463 (setq indent (- (current-indentation) initial)))
464 (if (and (>= indent 2) (<= indent 8)) ; sanity check 464 (if (and indent (>= indent 2) (<= indent 8)) ; sanity check
465 (setq done t)))))) 465 (setq done t))))))
466 (when done 466 (when done
467 (when (/= indent (default-value 'python-indent)) 467 (when (/= indent (default-value 'python-indent))