Mercurial > hg > octave-nkf
annotate src/oct-hist.h @ 12317:126d8fe48a12
Fix warning about GOTO reference in arpack code
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 31 Jan 2011 16:41:43 -0500 |
parents | fd0a3ac60b0e |
children | 00235a6446da |
rev | line source |
---|---|
1 | 1 /* |
2 | |
11523 | 3 Copyright (C) 1993-2011 John W. Eaton |
1 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
1 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
1 | 20 |
21 */ | |
22 | |
383 | 23 #if !defined (octave_octave_hist_h) |
24 #define octave_octave_hist_h 1 | |
1 | 25 |
1755 | 26 #include <string> |
27 | |
1799 | 28 #include "cmd-hist.h" |
29 | |
8273
2c1ba965b486
skip reading history file with --no-history option
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
30 extern void initialize_history (bool read_history_file = false); |
5794 | 31 |
5305 | 32 // Write timestamp to history file. |
33 extern void octave_history_write_timestamp (void); | |
1799 | 34 |
3018 | 35 // TRUE means input is coming from temporary history file. |
36 extern bool input_from_tmp_history_file; | |
168 | 37 |
3016 | 38 // TRUE if we are saving history. |
3018 | 39 extern bool Vsaving_history; |
3016 | 40 |
1 | 41 #endif |