diff options
author | Augusto Stoffel <arstoffel@gmail.com> | 2021-09-09 15:48:37 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-09 15:48:37 +0200 |
commit | e27385ec372b36822958ebed6792ca806b1a0c3d (patch) | |
tree | 3e9cbf40e4bbc1df424f5d7dabe95e58db8f80e8 /lisp/comint.el | |
parent | 2be75990a7ae611e8596a91b5e124dc421ec93b4 (diff) | |
download | emacs-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.el | 6 |
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: |