Mercurial > hg > octave-nkf
diff src/toplev.cc @ 3141:292ff0bf484b
[project @ 1998-02-03 08:11:07 by jwe]
author | jwe |
---|---|
date | Tue, 03 Feb 1998 08:11:22 +0000 |
parents | af7ec9d3a5e6 |
children | 894d516b4a00 |
line wrap: on
line diff
--- a/src/toplev.cc +++ b/src/toplev.cc @@ -541,6 +541,8 @@ Octave_map m; + // XXX FIXME XXX -- should we perform OCTAVE_HOME substitution on these? + m ["default_pager"] = DEFAULT_PAGER; m ["prefix"] = OCTAVE_PREFIX; m ["exec_prefix"] = OCTAVE_EXEC_PREFIX; @@ -646,15 +648,15 @@ void symbols_of_toplev (void) { - DEFCONST (argv, , 0, 0, + DEFCONST (argv, , "the command line arguments this program was invoked with"); DEFCONST (program_invocation_name, - octave_env::get_program_invocation_name (), 0, 0, + octave_env::get_program_invocation_name (), "the full name of the current program or script, including the\n\ directory specification"); - DEFCONST (program_name, octave_env::get_program_name (), 0, 0, + DEFCONST (program_name, octave_env::get_program_name (), "the name of the current program or script"); }