Mercurial > hg > octave-lyh
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 |
rev | line source |
---|---|
5316 | 1 ## System-wide startup file for Octave. |
2 ## | |
3 ## This file should contain any commands that should be executed each | |
4 ## time Octave starts for every user at this site. | |
5 | |
6 ## Configure readline using the file inputrc in the Octave startup | |
7 ## directory. | |
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 | 10 octave_config_info ("startupfiledir"), |
11 filesep, "inputrc")); | |
6144 | 12 |
13 if (strcmp (PAGER (), "less") && isempty (getenv ("LESS"))) | |
14 PAGER_FLAGS ('-e -X -P"-- less ?pB(%pB\\%):--. (f)orward, (b)ack, (q)uit$"'); | |
15 endif | |
7073 | 16 |
17 ## This appears here instead of in the pkg/PKG_ADD file so that --norc | |
18 ## will also skip automatic loading of packages. | |
19 | |
20 pkg ("load", "auto"); | |
7391 | 21 |
7392 | 22 atexit ("__finish__"); |