diff options
| author | Lute Kamstra | 2003-10-29 18:55:55 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2003-10-29 18:55:55 +0000 |
| commit | b2fc0976717e29c89c508b97f7e307c6383cd07a (patch) | |
| tree | 5112d3b0bd47044825cdade5af98676bcea20681 | |
| parent | c1dc897c47054db6873126178de9e39552026fe8 (diff) | |
| download | emacs-b2fc0976717e29c89c508b97f7e307c6383cd07a.tar.gz emacs-b2fc0976717e29c89c508b97f7e307c6383cd07a.zip | |
(inferior-octave-prompt): Recognize version number in prompt.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/octave-inf.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3e077f0c3fd..dde7d5366cc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-10-29 Lute Kamstra <lute@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/octave-inf.el (inferior-octave-prompt): Recognize | ||
| 4 | version number in prompt. | ||
| 5 | |||
| 1 | 2003-10-28 Dave Love <fx@gnu.org> | 6 | 2003-10-28 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * international/characters.el: Fix some Unicode ranges. | 8 | * international/characters.el: Fix some Unicode ranges. |
diff --git a/lisp/progmodes/octave-inf.el b/lisp/progmodes/octave-inf.el index c09f99a4547..265cf6c049b 100644 --- a/lisp/progmodes/octave-inf.el +++ b/lisp/progmodes/octave-inf.el | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | :group 'octave-inferior) | 41 | :group 'octave-inferior) |
| 42 | 42 | ||
| 43 | (defcustom inferior-octave-prompt | 43 | (defcustom inferior-octave-prompt |
| 44 | "\\(^octave\\(\\|.bin\\)\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " | 44 | "\\(^octave\\(\\|.bin\\)\\(-[.0-9]+\\)?\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " |
| 45 | "*Regexp to match prompts for the inferior Octave process." | 45 | "*Regexp to match prompts for the inferior Octave process." |
| 46 | :type 'regexp | 46 | :type 'regexp |
| 47 | :group 'octave-inferior) | 47 | :group 'octave-inferior) |