summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorAugusto Stoffel <arstoffel@gmail.com>2021-09-09 15:48:37 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-09-09 15:48:37 +0200
commite27385ec372b36822958ebed6792ca806b1a0c3d (patch)
tree3e9cbf40e4bbc1df424f5d7dabe95e58db8f80e8 /lisp/comint.el
parent2be75990a7ae611e8596a91b5e124dc421ec93b4 (diff)
downloademacs-e27385ec372b36822958ebed6792ca806b1a0c3d.tar.gz
emacs-e27385ec372b36822958ebed6792ca806b1a0c3d.tar.bz2
emacs-e27385ec372b36822958ebed6792ca806b1a0c3d.zip
Better treatment of line length limits for the Python inferior
* lisp/comint.el (comint-max-line-length): New constant reflecting a safe maximum line size that can be sent to an inferior process. * lisp/progmodes/python.el (python-shell-comint-watch-for-first-prompt-output-filter): Send setup code to the inferior process only once and at this stage. (python-shell-eval-setup-code, python-shell-eval-file-setup-code): Move, unchanged, to an earlier point to avoid byte-compiler warnings. (python-shell-send-string-no-output): Revert changes of e32c7d2a8d (python-shell-send-string): Use 'comint-max-line-length' to decide when to resort to temp files. (python-shell-send-string, python-shell-send-file): Don't send setup code each time (bug#49822).
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index e058e6b8cf1..c2e528a5d53 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -479,6 +479,12 @@ executed once, when the buffer is created."
:group 'comint
:version "26.1")
+(defconst comint-max-line-length
+ (pcase system-type
+ ('gnu/linux 4096)
+ (_ 1024))
+ "Maximum line length, in bytes, accepted by the inferior process.")
+
(defvar comint-mode-map
(let ((map (make-sparse-keymap)))
;; Keys: