diff options
| author | Jan D | 2015-05-17 16:46:34 +0200 |
|---|---|---|
| committer | Jan D | 2015-05-17 16:46:34 +0200 |
| commit | 6445ee0fb751ae2c1dfef900d44721b3d952812f (patch) | |
| tree | d43006cb93d9ea7b00ea02aabcd5577c41ff827f /lisp/progmodes/python.el | |
| parent | f92ac2e82ed199d6f25d2a59508e08addb1150ac (diff) | |
| parent | c9c4708ed47b18987940a71b98eb9873150d2b95 (diff) | |
| download | emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.tar.gz emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.zip | |
Merge branch 'master' into cairo
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 3 |
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) |