diff options
| author | Richard M. Stallman | 1993-12-23 04:43:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-23 04:43:53 +0000 |
| commit | 50e268ea77a083c1470efc23cdeee3c780951102 (patch) | |
| tree | 2baa68fe01849641e5a47337bcdea247c395df8d | |
| parent | f48c1d8d7cb0278edbfcaf45ecbf3e93f3f653ed (diff) | |
| download | emacs-50e268ea77a083c1470efc23cdeee3c780951102.tar.gz emacs-50e268ea77a083c1470efc23cdeee3c780951102.zip | |
(inferior-lisp-prompt): Don't match more than one line.
| -rw-r--r-- | lisp/progmodes/inf-lisp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el index 2f5b608f864..a05b3dcd367 100644 --- a/lisp/progmodes/inf-lisp.el +++ b/lisp/progmodes/inf-lisp.el | |||
| @@ -149,9 +149,9 @@ produces cosmetically superior output for this application, | |||
| 149 | but it works only in Common Lisp.") | 149 | but it works only in Common Lisp.") |
| 150 | 150 | ||
| 151 | ;;;###autoload | 151 | ;;;###autoload |
| 152 | (defvar inferior-lisp-prompt "^[^> ]*>+:? *" | 152 | (defvar inferior-lisp-prompt "^[^> \n]*>+:? *" |
| 153 | "Regexp to recognise prompts in the Inferior Lisp mode. | 153 | "Regexp to recognise prompts in the Inferior Lisp mode. |
| 154 | Defaults to \"^[^> ]*>+:? *\", which works pretty good for Lucid, kcl, | 154 | Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, |
| 155 | and franz. This variable is used to initialize `comint-prompt-regexp' in the | 155 | and franz. This variable is used to initialize `comint-prompt-regexp' in the |
| 156 | Inferior Lisp buffer. | 156 | Inferior Lisp buffer. |
| 157 | 157 | ||