mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-29 19:48:19 +00:00
python.el: Don't change `comint-prompt-read-only' globally
Fixes: debbugs:19288 * lisp/progmodes/python.el (inferior-python-mode): Set `comint-prompt-read-only` to `t` only locally.
This commit is contained in:
parent
09ef13993b
commit
afa1d80fe0
@ -1,3 +1,8 @@
|
||||
2014-12-09 Fabián Ezequiel Gallina <fgallina@gnu.org>
|
||||
|
||||
* progmodes/python.el (inferior-python-mode): Set
|
||||
`comint-prompt-read-only` to `t` only locally.
|
||||
|
||||
2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* net/nsm.el (nsm-check-protocol): Test for RC4 on `high'.
|
||||
|
@ -2441,8 +2441,8 @@ variable.
|
||||
(set (make-local-variable 'python-shell--prompt-calculated-input-regexp) nil)
|
||||
(set (make-local-variable 'python-shell--prompt-calculated-output-regexp) nil)
|
||||
(python-shell-prompt-set-calculated-regexps)
|
||||
(setq comint-prompt-regexp python-shell--prompt-calculated-input-regexp
|
||||
comint-prompt-read-only t)
|
||||
(setq comint-prompt-regexp python-shell--prompt-calculated-input-regexp)
|
||||
(set (make-local-variable 'comint-prompt-read-only) t)
|
||||
(setq mode-line-process '(":%s"))
|
||||
(set (make-local-variable 'comint-output-filter-functions)
|
||||
'(ansi-color-process-output
|
||||
|
Loading…
Reference in New Issue
Block a user