Variable: inferior-octave-startup-args

inferior-octave-startup-args is a customizable variable defined in octave.el.gz.

Value

("-i" "--no-line-editing")

Documentation

List of command line arguments for the inferior Octave process.

For example, for suppressing the startup message and using traditional mode, include "-q" and "--traditional".

This variable was added, or its default value changed, in Emacs 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/octave.el.gz
(defcustom inferior-octave-startup-args '("-i" "--no-line-editing")
  "List of command line arguments for the inferior Octave process.
For example, for suppressing the startup message and using `traditional'
mode, include \"-q\" and \"--traditional\"."
  :type '(repeat string)
  :version "24.4")