aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorJan D2015-05-17 16:46:34 +0200
committerJan D2015-05-17 16:46:34 +0200
commit6445ee0fb751ae2c1dfef900d44721b3d952812f (patch)
treed43006cb93d9ea7b00ea02aabcd5577c41ff827f /lisp/progmodes/python.el
parentf92ac2e82ed199d6f25d2a59508e08addb1150ac (diff)
parentc9c4708ed47b18987940a71b98eb9873150d2b95 (diff)
downloademacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.tar.gz
emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.zip
Merge branch 'master' into cairo
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index eb17d075921..4b0a028faa3 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -2268,7 +2268,8 @@ banner and the initial prompt are received separately."
2268 (while t 2268 (while t
2269 (when (not (accept-process-output process timeout)) 2269 (when (not (accept-process-output process timeout))
2270 (throw 'found nil)) 2270 (throw 'found nil))
2271 (when (looking-back regexp) 2271 (when (looking-back
2272 regexp (car (python-util-comint-last-prompt)))
2272 (throw 'found t)))))) 2273 (throw 'found t))))))
2273 2274
2274(defun python-shell-comint-end-of-output-p (output) 2275(defun python-shell-comint-end-of-output-p (output)