From 66081ad6f4dba44b64c809cde5f4a904b0f381fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fabi=C3=A1n=20Ezequiel=20Gallina?= Date: Fri, 21 Aug 2015 23:42:01 -0300 Subject: [PATCH] ; python.el: Fix previous commit for Emacs<24.3 compatibility --- lisp/progmodes/python.el | 4 ++++ 1 file changed, 4 insertions(+) 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'." ;; Emacs<24.4 compat. (list (tramp-get-remote-locale vec))) (copy-sequence env))) + (tramp-end-of-heredoc + (if (boundp 'tramp-end-of-heredoc) + tramp-end-of-heredoc + (md5 tramp-end-of-output))) unset vars item) (while env (setq item (tramp-compat-split-string (car env) "=")) -- 2.39.5