diff options
| author | Fabián Ezequiel Gallina | 2015-08-21 23:42:01 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2015-08-21 23:42:01 -0300 |
| commit | 66081ad6f4dba44b64c809cde5f4a904b0f381fb (patch) | |
| tree | c8bc99c64be39bf440a43135d8ac94db56e6f281 /lisp/progmodes/python.el | |
| parent | cf42b9fe8dade8da417f49bf0d13b85614eec076 (diff) | |
| download | emacs-66081ad6f4dba44b64c809cde5f4a904b0f381fb.tar.gz emacs-66081ad6f4dba44b64c809cde5f4a904b0f381fb.zip | |
; python.el: Fix previous commit for Emacs<24.3 compatibility
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 7d7122acccb..d442dae9f3b 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -2105,6 +2105,10 @@ appends `python-shell-remote-exec-path' instead of `exec-path'." | |||
| 2105 | ;; Emacs<24.4 compat. | 2105 | ;; Emacs<24.4 compat. |
| 2106 | (list (tramp-get-remote-locale vec))) | 2106 | (list (tramp-get-remote-locale vec))) |
| 2107 | (copy-sequence env))) | 2107 | (copy-sequence env))) |
| 2108 | (tramp-end-of-heredoc | ||
| 2109 | (if (boundp 'tramp-end-of-heredoc) | ||
| 2110 | tramp-end-of-heredoc | ||
| 2111 | (md5 tramp-end-of-output))) | ||
| 2108 | unset vars item) | 2112 | unset vars item) |
| 2109 | (while env | 2113 | (while env |
| 2110 | (setq item (tramp-compat-split-string (car env) "=")) | 2114 | (setq item (tramp-compat-split-string (car env) "=")) |