bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#18596: 25.0.50; MS-Windows needs a different default for python-shel


From: Glenn Morris
Subject: bug#18596: 25.0.50; MS-Windows needs a different default for python-shell-interpreter-args
Date: Wed, 01 Oct 2014 12:48:06 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Eli Zaretskii wrote:

> With the default value, 'run-python' hangs in accept-process-output.
> This fixes that for me:
>
> --- lisp/progmodes/python.el~0        2014-10-01 06:33:59 +0300
> +++ lisp/progmodes/python.el  2014-10-01 18:10:48 +0300
> @@ -1739,7 +1739,8 @@
>    :group 'python
>    :safe 'stringp)
>  
> -(defcustom python-shell-interpreter-args "-i"
> +(defcustom python-shell-interpreter-args
> +  (if (eq system-type 'windows-nt) "-i -u" "-i")

Should this be in emacs-24?
(So no-one has ever used it on MS Windows?)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]