# HG changeset patch # User jwe # Date 782324789 0 # Node ID 45f67430074747f46048b977778124595769a69e # Parent 46b2bf3b526c9e152fe99084774a2cb575aca86d [project @ 1994-10-16 16:24:55 by jwe] diff -r 46b2bf3b526c -r 45f674300747 src/octave.cc --- a/src/octave.cc Sat Oct 15 15:37:04 1994 +0000 +++ b/src/octave.cc Sun Oct 16 16:26:29 1994 +0000 @@ -113,6 +113,7 @@ int no_line_editing = 0; // If nonzero, print verbose info in some cases. +// (--verbose; -V) int verbose_flag = 0; // Command number, counting from the beginning of this session. @@ -160,9 +161,9 @@ // Usage message static const char *usage_string = - "octave [-?Vdfhiqvx] [-p path] [--debug] [--help] [--interactive]\n\ - [--info-file file] [--norc] [--path path] [--quiet] [--verbose]\n\ - [--version] [--echo-commands] [file]"; + "octave [-?Vdfhiqvx] [-p path] [--debug] [--help] [--ignore-init-file]\n\ + [--info-file file] [--interactive] [--path path] [--silent]\n\ + [--verbose] [--version] [--echo-commands] [file]"; // This is here so that it\'s more likely that the usage message and // the real set of options will agree. @@ -372,6 +373,7 @@ << "\n" << " usage: " << usage_string << "\n\n" + << " V : enable verbose output in some cases\n" << " d : enter parser debugging mode\n" << " f : don't read ~/.octaverc or .octaverc at startup\n" << " h|? : print short help message and exit\n"