1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(inferior-scheme-mode):

Don't let `comint-prompt-regexp' match more than one line.
This commit is contained in:
Richard M. Stallman 1993-12-23 04:44:57 +00:00
parent 50e268ea77
commit 9f370a90b5

View File

@ -180,7 +180,7 @@ to continue it."
(interactive)
(comint-mode)
;; Customise in inferior-scheme-mode-hook
(setq comint-prompt-regexp "^[^>]*>+ *") ; OK for cscheme, oaklisp, T,...
(setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
(scheme-mode-variables)
(setq major-mode 'inferior-scheme-mode)
(setq mode-name "Inferior Scheme")