From: Augusto Stoffel Date: Sat, 11 Sep 2021 13:39:13 +0000 (+0200) Subject: Keep python.el compatible with older Emacsen X-Git-Tag: emacs-28.0.90~1061^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84e35ff78667a730d6f23d995ff649ded32cd420;p=emacs.git Keep python.el compatible with older Emacsen * progmodes/python.el (python-shell-send-string): Don't assume comint-max-line-length is defined (bug#50503). --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 9cf88ea656b..d9fc5c50091 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -3163,7 +3163,9 @@ t when called interactively." (python-shell--encode-string (or (buffer-file-name) ""))))) (if (or (null (process-tty-name process)) - (<= (string-bytes code) comint-max-line-length)) + (<= (string-bytes code) + (or (bound-and-true-p comint-max-line-length) + 1024))) ;; For Emacs < 28 (comint-send-string process code) (let* ((temp-file-name (with-current-buffer (process-buffer process) (python-shell--save-temp-file string)))