comparison lisp/progmodes/octave-inf.el @ 20251:0457d32c5b05

(inferior-octave-startup-args): Set to '("-i") to force interactive behavior. (inferior-octave-prompt): Include the `debug' prompt issued by the Octave `keyboard' command.
author Karl Heuer <kwzh@gnu.org>
date Tue, 11 Nov 1997 04:00:53 +0000
parents 8f952e921136
children 1ed464f56e6e
comparison
equal deleted inserted replaced
20250:e29142cee7c3 20251:0457d32c5b05
30 (require 'comint) 30 (require 'comint)
31 31
32 (defvar inferior-octave-program "octave" 32 (defvar inferior-octave-program "octave"
33 "*Program invoked by `inferior-octave'.") 33 "*Program invoked by `inferior-octave'.")
34 34
35 (defvar inferior-octave-prompt "\\(^octave\\(:[0-9]+\\)?\\|^\\)>+ " 35 (defvar inferior-octave-prompt
36 "\\(^octave\\(:[0-9]+\\)?\\|^debug\\|^\\)>+ "
36 "*Regexp to match prompts for the inferior Octave process.") 37 "*Regexp to match prompts for the inferior Octave process.")
37 38
38 (defvar inferior-octave-startup-file nil 39 (defvar inferior-octave-startup-file nil
39 "*Name of the inferior Octave startup file. 40 "*Name of the inferior Octave startup file.
40 The contents of this file are sent to the inferior Octave process on 41 The contents of this file are sent to the inferior Octave process on
41 startup.") 42 startup.")
42 43
43 (defvar inferior-octave-startup-args nil 44 (defvar inferior-octave-startup-args '("-i")
44 "*List of command line arguments for the inferior Octave process. 45 "*List of command line arguments for the inferior Octave process.
45 For example, for suppressing the startup message and using `traditional' 46 For example, for suppressing the startup message and using `traditional'
46 mode, set this to (\"-q\" \"--traditional\").") 47 mode, set this to (\"-q\" \"--traditional\").")
47 48
48 (defvar inferior-octave-mode-map nil 49 (defvar inferior-octave-mode-map nil