http://debbugs.gnu.org/10788
+2012-02-11 Leo Liu <sdl.web@gmail.com>
+
+ * progmodes/python.el (python-end-of-statement): Fix infinite
+ loop. (Bug#10788)
+
2012-02-10 Glenn Morris <rgm@gnu.org>
* international/mule-cmds.el (unify-8859-on-encoding-mode)
(error (goto-char pos) (end-of-line)))))
((python-skip-out t s))))
(end-of-line))
- (unless comment
- (eq ?\\ (char-before)))) ; Line continued?
- (end-of-line 2)) ; Try next line.
+ (and (not comment)
+ (not (eobp))
+ (eq ?\\ (char-before)))) ; Line continued?
+ (end-of-line 2)) ; Try next line.
(point))
(defun python-previous-statement (&optional count)