diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-09-28 14:03:38 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-09-28 14:03:38 +0000 |
commit | 9eb580d27f243c3978a83794cf73968b3c3541d5 (patch) | |
tree | 42f9d8b66c3bf8aef4e368dfae5475c33c085348 /lisp/progmodes/octave-inf.el | |
parent | 458f70dc008b222c77d96795a33ff2ae6866d6e6 (diff) | |
download | emacs-9eb580d27f243c3978a83794cf73968b3c3541d5.tar.gz |
(inferior-octave-prompt): Also match prompts of the form
`octave.bin:1>' which come from using precopiled binary versions.
Diffstat (limited to 'lisp/progmodes/octave-inf.el')
-rw-r--r-- | lisp/progmodes/octave-inf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/octave-inf.el b/lisp/progmodes/octave-inf.el index 64f9e4c0efc..097c8649f8b 100644 --- a/lisp/progmodes/octave-inf.el +++ b/lisp/progmodes/octave-inf.el @@ -39,7 +39,7 @@ :group 'octave-inferior) (defcustom inferior-octave-prompt - "\\(^octave\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " + "\\(^octave\\(\\|.bin\\)\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " "*Regexp to match prompts for the inferior Octave process." :type 'regexp :group 'octave-inferior) |