comparison libinterp/octave.cc @ 15474:1865feebb415

* octave.cc (info_program, info_file): Delete unused static variables.
author John W. Eaton <jwe@octave.org>
date Wed, 03 Oct 2012 02:23:38 -0400
parents 457a2ff2a71b
children da6c37ed0b42
comparison
equal deleted inserted replaced
15473:457a2ff2a71b 15474:1865feebb415
163 static std::string exec_path; 163 static std::string exec_path;
164 164
165 // The value for "IMAGE_PATH" specified on the command line. 165 // The value for "IMAGE_PATH" specified on the command line.
166 // (--image-path) 166 // (--image-path)
167 static std::string image_path; 167 static std::string image_path;
168
169 // The value for "info_file" specified on the command line.
170 // (--info-file)
171 static std::string info_file;
172
173 // The value for "info_program" specified on the command line.
174 // (--info-program)
175 static std::string info_program;
176 168
177 // If TRUE, ignore the window system even if it is available. 169 // If TRUE, ignore the window system even if it is available.
178 // (--no-window-system) 170 // (--no-window-system)
179 static bool no_window_system = false; 171 static bool no_window_system = false;
180 172