Mercurial > hg > octave-lyh
diff src/octave.cc @ 2375:7ef24992e290
[project @ 1996-10-12 00:39:52 by jwe]
author | jwe |
---|---|
date | Sat, 12 Oct 1996 00:40:27 +0000 |
parents | 778a9a837952 |
children | 690435f72e58 |
line wrap: on
line diff
--- a/src/octave.cc +++ b/src/octave.cc @@ -57,6 +57,7 @@ #include "input.h" #include "lex.h" #include "oct-hist.h" +#include "ops.h" #include "toplev.h" #include "parse.h" #include "pathsearch.h" @@ -64,7 +65,7 @@ #include "prog-args.h" #include "sighandlers.h" #include "sysdep.h" -#include "pt-const.h" +#include "ov.h" #include "pt-misc.h" #include "pt-plot.h" #include "unwind-prot.h" @@ -307,7 +308,7 @@ static void verbose_usage (void) { - cout << "\n" OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\ + cout << OCTAVE_NAME_VERSION_AND_COPYRIGHT "\n\ \n\ Usage: octave [options]\n\ \n\ @@ -331,7 +332,11 @@ -v, --version Print version number and exit.\n\ \n\ FILE Execute commands from FILE.\n\ -\n"; +\n\ +Additional information about Octave is available via the WWW at\n\ +http://www.che.wisc.edu/octave.\n\ +\n\ +Please report bugs to the mailing list `bug-octave@bevo.che.wisc.edu'.\n"; exit (0); } @@ -405,7 +410,11 @@ initialize_file_io (); - initialize_symbol_tables (); + initialize_symbol_tables (); + + install_types (); + + install_ops (); install_builtins ();