]> git.eshelyaron.com Git - emacs.git/commitdiff
(inferior-octave-startup-args):
authorKarl Heuer <kwzh@gnu.org>
Tue, 11 Nov 1997 04:00:53 +0000 (04:00 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 11 Nov 1997 04:00:53 +0000 (04:00 +0000)
Set to '("-i") to force interactive behavior.
(inferior-octave-prompt): Include the `debug' prompt issued by the
Octave `keyboard' command.

lisp/progmodes/octave-inf.el

index cbe4ffcc89d6b0460c3b3bce9f4d0550fc410cc5..5be9e94cc469f3ef778713dcf0db49b0b4d7374d 100644 (file)
@@ -32,7 +32,8 @@
 (defvar inferior-octave-program "octave"
   "*Program invoked by `inferior-octave'.")
 
-(defvar inferior-octave-prompt "\\(^octave\\(:[0-9]+\\)?\\|^\\)>+ "
+(defvar inferior-octave-prompt
+  "\\(^octave\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ "
   "*Regexp to match prompts for the inferior Octave process.")
 
 (defvar inferior-octave-startup-file nil
@@ -40,7 +41,7 @@
 The contents of this file are sent to the inferior Octave process on
 startup.")
 
-(defvar inferior-octave-startup-args nil
+(defvar inferior-octave-startup-args '("-i")
   "*List of command line arguments for the inferior Octave process.
 For example, for suppressing the startup message and using `traditional'
 mode, set this to (\"-q\" \"--traditional\").")