]> git.eshelyaron.com Git - emacs.git/commitdiff
Make prompt read-only in inferior-scheme-mode
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 12 May 2022 12:15:12 +0000 (14:15 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 12 May 2022 12:15:12 +0000 (14:15 +0200)
* lisp/cmuscheme.el (inferior-scheme-mode): Make the prompt
read-only to be more consistent with other inferior modes
(bug#21118).

lisp/cmuscheme.el

index e64d9d28dd6e70924fdddc46133889a6871b79e5..22a465f5b61eb5e97500e43d926ba4069b8d7ea6 100644 (file)
@@ -195,6 +195,7 @@ to continue it."
   (scheme-mode-variables)
   (setq mode-line-process '(":%s"))
   (setq comint-input-filter (function scheme-input-filter))
+  (setq-local comint-prompt-read-only t)
   (setq comint-get-old-input (function scheme-get-old-input)))
 
 (defcustom inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"