From: Fabián Ezequiel Gallina Date: Mon, 11 May 2015 03:03:08 +0000 (-0300) Subject: python.el: better limit for looking-back calls X-Git-Tag: emacs-25.0.90~2122 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e35bf5727153bdc8be7178504a8b920b9560b7b0;p=emacs.git python.el: better limit for looking-back calls * lisp/progmodes/python.el (python-shell-accept-process-output): Use last comint prompt start as limit for looking-back. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 2e7410ac833..4b0a028faa3 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -2268,7 +2268,8 @@ banner and the initial prompt are received separately." (while t (when (not (accept-process-output process timeout)) (throw 'found nil)) - (when (looking-back regexp (point-min)) + (when (looking-back + regexp (car (python-util-comint-last-prompt))) (throw 'found t)))))) (defun python-shell-comint-end-of-output-p (output)