# HG changeset patch # User Stephen Eglen # Date 937328260 0 # Node ID f440228994baf49a2da732497dcbe28a301836ac # Parent 096f3085e905113d951382dc33c895d4c3397047 (inferior-octave-startup): Ensure -i and --no-line-editing are passed to Octave by including them here rather than storing them in inferior-octave-startup-args. diff -r 096f3085e905 -r f440228994ba lisp/progmodes/octave-inf.el --- a/lisp/progmodes/octave-inf.el Tue Sep 14 15:30:15 1999 +0000 +++ b/lisp/progmodes/octave-inf.el Tue Sep 14 16:57:40 1999 +0000 @@ -52,7 +52,7 @@ file) :group 'octave-inferior) -(defcustom inferior-octave-startup-args '("-i" "--no-line-editing") +(defcustom inferior-octave-startup-args nil "*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\")." @@ -182,7 +182,8 @@ (substring inferior-octave-buffer 1 -1) inferior-octave-buffer inferior-octave-program - inferior-octave-startup-args))) + (append (list "-i" "--no-line-editing") + inferior-octave-startup-args)))) (set-process-filter proc 'inferior-octave-output-digest) (setq comint-ptyp process-connection-type inferior-octave-process proc