comparison src/octave.cc @ 268:69ed7cc2c05a

[project @ 1994-01-05 07:20:02 by jwe]
author jwe
date Wed, 05 Jan 1994 07:20:02 +0000
parents a99f28f5e351
children f1897eae772e
comparison
equal deleted inserted replaced
267:12010b8263ca 268:69ed7cc2c05a
1 // octave.cc -*- C++ -*- 1 // octave.cc -*- C++ -*-
2 /* 2 /*
3 3
4 Copyright (C) 1992, 1993 John W. Eaton 4 Copyright (C) 1992, 1993, 1994 John W. Eaton
5 5
6 This file is part of Octave. 6 This file is part of Octave.
7 7
8 Octave is free software; you can redistribute it and/or modify it 8 Octave is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the 9 under the terms of the GNU General Public License as published by the
306 static void 306 static void
307 verbose_usage (void) 307 verbose_usage (void)
308 { 308 {
309 cout << "\n" 309 cout << "\n"
310 << " Octave, version " << version_string 310 << " Octave, version " << version_string
311 << ". Copyright (C) 1992, 1993, John W. Eaton.\n" 311 << ". Copyright (C) 1992, 1993, 1994 John W. Eaton.\n"
312 << " This is free software with ABSOLUTELY NO WARRANTY.\n" 312 << " This is free software with ABSOLUTELY NO WARRANTY.\n"
313 << "\n" 313 << "\n"
314 << " usage: " << usage_string 314 << " usage: " << usage_string
315 << "\n\n" 315 << "\n\n"
316 << " d : enter parser debugging mode\n" 316 << " d : enter parser debugging mode\n"
495 install_signal_handlers (); 495 install_signal_handlers ();
496 496
497 if (! inhibit_startup_message) 497 if (! inhibit_startup_message)
498 { 498 {
499 cout << "Octave, version " << version_string 499 cout << "Octave, version " << version_string
500 << ". Copyright (C) 1992, 1993, John W. Eaton.\n" 500 << ". Copyright (C) 1992, 1993, 1994 John W. Eaton.\n"
501 << "This is free software with ABSOLUTELY NO WARRANTY.\n" 501 << "This is free software with ABSOLUTELY NO WARRANTY.\n"
502 << "For details, type `warranty'.\n" 502 << "For details, type `warranty'.\n"
503 << "\n"; 503 << "\n";
504 } 504 }
505 505