Mercurial > hg > octave-lyh
comparison src/octave.cc @ 616:9ced66fce8a3
[project @ 1994-08-15 04:16:37 by jwe]
author | jwe |
---|---|
date | Mon, 15 Aug 1994 04:16:43 +0000 |
parents | 17cddd259c6f |
children | 1a7dea6fa26b |
comparison
equal
deleted
inserted
replaced
615:a502e1974331 | 616:9ced66fce8a3 |
---|---|
90 char *home_directory = 0; | 90 char *home_directory = 0; |
91 | 91 |
92 // Guess what? | 92 // Guess what? |
93 char *the_current_working_directory = 0; | 93 char *the_current_working_directory = 0; |
94 | 94 |
95 // Load path specified on command line. | 95 // Load path specified on command line. (--path path; -p path) |
96 char *load_path = 0; | 96 char *load_path = 0; |
97 | 97 |
98 // Name of the info file specified on command line. | 98 // Name of the info file specified on command line. |
99 // (--info-file file; -i file) | |
99 char *info_file = 0; | 100 char *info_file = 0; |
100 | 101 |
101 // Name of the editor to be invoked by the edit_history command. | 102 // Name of the editor to be invoked by the edit_history command. |
102 char *editor = 0; | 103 char *editor = 0; |
103 | 104 |
135 { | 136 { |
136 warning (msg); | 137 warning (msg); |
137 } | 138 } |
138 | 139 |
139 // Nonzero means we read ~/.octaverc and ./.octaverc. | 140 // Nonzero means we read ~/.octaverc and ./.octaverc. |
141 // (--norc; --ignore-init-file; -f) | |
140 static int read_init_files = 1; | 142 static int read_init_files = 1; |
141 | 143 |
142 // Nonzero means we printed messages about reading startup files. | 144 // Nonzero means we printed messages about reading startup files. |
143 static int reading_startup_message_printed = 0; | 145 static int reading_startup_message_printed = 0; |
144 | 146 |
145 // Nonzero means we don\'t print the usual startup message. | 147 // Nonzero means we don\'t print the usual startup message. |
148 // (--quiet; --silent; -q) | |
146 static int inhibit_startup_message = 0; | 149 static int inhibit_startup_message = 0; |
147 | 150 |
148 // Usage message | 151 // Usage message |
149 static const char *usage_string = | 152 static const char *usage_string = |
150 "octave [-?dfhiqvx] [-p path] [--debug] [--help] [--interactive]\n\ | 153 "octave [-?dfhiqvx] [-p path] [--debug] [--help] [--interactive]\n\ |