From: Lute Kamstra Date: Wed, 29 Oct 2003 18:55:55 +0000 (+0000) Subject: (inferior-octave-prompt): Recognize version number in prompt. X-Git-Tag: ttn-vms-21-2-B4~8453 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/b2fc0976717e29c89c508b97f7e307c6383cd07a?ds=sidebyside (inferior-octave-prompt): Recognize version number in prompt. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3e077f0c3f..dde7d5366c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-10-29 Lute Kamstra + + * progmodes/octave-inf.el (inferior-octave-prompt): Recognize + version number in prompt. + 2003-10-28 Dave Love * international/characters.el: Fix some Unicode ranges. diff --git a/lisp/progmodes/octave-inf.el b/lisp/progmodes/octave-inf.el index c09f99a454..265cf6c049 100644 --- a/lisp/progmodes/octave-inf.el +++ b/lisp/progmodes/octave-inf.el @@ -41,7 +41,7 @@ :group 'octave-inferior) (defcustom inferior-octave-prompt - "\\(^octave\\(\\|.bin\\)\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " + "\\(^octave\\(\\|.bin\\)\\(-[.0-9]+\\)?\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ " "*Regexp to match prompts for the inferior Octave process." :type 'regexp :group 'octave-inferior)