Mercurial > hg > octave-nkf
comparison liboctave/cmd-hist.h @ 4802:b3f20980be32
[project @ 2004-02-25 05:14:19 by jwe]
author | jwe |
---|---|
date | Wed, 25 Feb 2004 05:14:19 +0000 |
parents | bd422cf62f0c |
children | 4c8a2e4e0717 |
comparison
equal
deleted
inserted
replaced
4801:b022780ac0b4 | 4802:b3f20980be32 |
---|---|
75 static void set_mark (int n); | 75 static void set_mark (int n); |
76 | 76 |
77 // Gag. This declaration has to match the Function typedef in | 77 // Gag. This declaration has to match the Function typedef in |
78 // readline.h. | 78 // readline.h. |
79 | 79 |
80 static void goto_mark (void); | 80 static int goto_mark (void); |
81 | 81 |
82 static void read (bool = true); | 82 static void read (bool = true); |
83 | 83 |
84 static void read (const std::string&, bool = true); | 84 static void read (const std::string&, bool = true); |
85 | 85 |
155 | 155 |
156 virtual int do_is_stifled (void); | 156 virtual int do_is_stifled (void); |
157 | 157 |
158 virtual void do_set_mark (int); | 158 virtual void do_set_mark (int); |
159 | 159 |
160 virtual void do_goto_mark (void); | 160 virtual int do_goto_mark (void); |
161 | 161 |
162 virtual void do_read (const std::string&, bool); | 162 virtual void do_read (const std::string&, bool); |
163 | 163 |
164 virtual void do_read_range (const std::string&, int, int, bool); | 164 virtual void do_read_range (const std::string&, int, int, bool); |
165 | 165 |