annotate scripts/startup/main-rcfile @ 17198:df4c4b7708a4

Add titles and clean-up plotting %!demos. * scripts/plot/area.m, scripts/plot/axis.m, scripts/plot/bar.m, scripts/plot/barh.m, scripts/plot/clabel.m, scripts/plot/colorbar.m, scripts/plot/comet.m, scripts/plot/comet3.m, scripts/plot/contour.m, scripts/plot/contour3.m, scripts/plot/contourf.m, scripts/plot/cylinder.m, scripts/plot/ellipsoid.m, scripts/plot/errorbar.m, scripts/plot/ezplot.m, scripts/plot/ezplot3.m, scripts/plot/ezpolar.m, scripts/plot/feather.m, scripts/plot/fplot.m, scripts/plot/hold.m, scripts/plot/isosurface.m, scripts/plot/legend.m, scripts/plot/loglog.m, scripts/plot/loglogerr.m, scripts/plot/mesh.m, scripts/plot/meshc.m, scripts/plot/meshz.m, scripts/plot/patch.m, scripts/plot/pcolor.m, scripts/plot/pie.m, scripts/plot/pie3.m, scripts/plot/plot.m, scripts/plot/plot3.m, scripts/plot/polar.m, scripts/plot/rectangle.m, scripts/plot/ribbon.m, scripts/plot/rose.m, scripts/plot/scatter.m, scripts/plot/scatter3.m, scripts/plot/semilogx.m, scripts/plot/semilogxerr.m, scripts/plot/semilogy.m, scripts/plot/semilogyerr.m, scripts/plot/sombrero.m, scripts/plot/stem3.m, scripts/plot/surf.m, scripts/plot/surfc.m, scripts/plot/surfl.m, scripts/plot/title.m, scripts/plot/waterfall.m: Add titles and clean-up plotting %!demos.
author Rik <rik@octave.org>
date Tue, 06 Aug 2013 14:34:20 -0700
parents cc3743a91652
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5316
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
1 ## System-wide startup file for Octave.
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
2 ##
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
3 ## This file should contain any commands that should be executed each
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
4 ## time Octave starts for every user at this site.
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
5
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
6 ## Configure readline using the file inputrc in the Octave startup
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
7 ## directory.
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
8
16879
cc3743a91652 Rename read_readline_init_file to readline_read_init_file.
Rik <rik@octave.org>
parents: 7392
diff changeset
9 readline_read_init_file (sprintf ("%s%s%s",
5316
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
10 octave_config_info ("startupfiledir"),
aaa6df7aa13a [project @ 2005-04-28 15:01:33 by jwe]
jwe
parents:
diff changeset
11 filesep, "inputrc"));
6144
e8868fde0fc5 [project @ 2006-11-07 20:52:18 by jwe]
jwe
parents: 5794
diff changeset
12
e8868fde0fc5 [project @ 2006-11-07 20:52:18 by jwe]
jwe
parents: 5794
diff changeset
13 if (strcmp (PAGER (), "less") && isempty (getenv ("LESS")))
e8868fde0fc5 [project @ 2006-11-07 20:52:18 by jwe]
jwe
parents: 5794
diff changeset
14 PAGER_FLAGS ('-e -X -P"-- less ?pB(%pB\\%):--. (f)orward, (b)ack, (q)uit$"');
e8868fde0fc5 [project @ 2006-11-07 20:52:18 by jwe]
jwe
parents: 5794
diff changeset
15 endif
7073
66c6cab344f7 [project @ 2007-10-26 16:09:12 by jwe]
jwe
parents: 6144
diff changeset
16
66c6cab344f7 [project @ 2007-10-26 16:09:12 by jwe]
jwe
parents: 6144
diff changeset
17 ## This appears here instead of in the pkg/PKG_ADD file so that --norc
66c6cab344f7 [project @ 2007-10-26 16:09:12 by jwe]
jwe
parents: 6144
diff changeset
18 ## will also skip automatic loading of packages.
66c6cab344f7 [project @ 2007-10-26 16:09:12 by jwe]
jwe
parents: 6144
diff changeset
19
66c6cab344f7 [project @ 2007-10-26 16:09:12 by jwe]
jwe
parents: 6144
diff changeset
20 pkg ("load", "auto");
7391
f071480b7eac [project @ 2008-01-17 07:50:33 by jwe]
jwe
parents: 7073
diff changeset
21
7392
17f2cdb5232e [project @ 2008-01-17 08:14:32 by jwe]
jwe
parents: 7391
diff changeset
22 atexit ("__finish__");