view scripts/startup/version-rcfile @ 21351:1e0889a31c6a

version-rcfile: Fix missing quote typo in cset ea31a050bdd8. * version-rcfile: Fix missing quote typo in cset ea31a050bdd8.
author Rik <rik@octave.org>
date Thu, 25 Feb 2016 13:09:11 -0800
parents ea31a050bdd8
children 1da428cbf401
line wrap: on
line source

## System-wide startup file for Octave.
##
## If the environment variable OCTAVE_VERSION_INITFILE is set when Octave
## starts, then that file is executed instead of this file.
##
## This file contains commands that should be executed each time Octave starts
## for every user at this site.

## Configure readline using the file inputrc in the Octave startup directory.
readline_read_init_file (sprintf ("%s%s%s",
                                  octave_config_info ("startupfiledir"),
                                  filesep, "inputrc"));

## Configure LESS pager if present
if (strcmp (PAGER (), "less") && isempty (getenv ("LESS")))
  PAGER_FLAGS ('-e -X -P"-- less ?pB(%pB\\%):--. (f)orward, (b)ack, (q)uit$"');
endif

## This appears here instead of in the pkg/PKG_ADD file so that --norc
## will also skip automatic loading of packages.
pkg ("load", "auto");

## For Matlab compatibility, run startup.m when starting Octave.
if (exist ("startup", "file"))
  startup;  # No arg list here since startup might be a script.
endif

## For Matlab compatibility, schedule finish.m to run when exiting Octave.
atexit ("__finish__");