From: Stephen Eglen Date: Mon, 28 Sep 1998 14:03:38 +0000 (+0000) Subject: (inferior-octave-prompt): Also match prompts of the form X-Git-Tag: emacs-20.4~1606 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9eb580d27f243c3978a83794cf73968b3c3541d5;p=emacs.git (inferior-octave-prompt): Also match prompts of the form `octave.bin:1>' which come from using precopiled binary versions. --- 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)