comparison liboctave/cmd-edit.h @ 7758:8e14a01ffe9f

input.cc (Fre_read_readline_init_file): new function
author John W. Eaton <jwe@octave.org>
date Mon, 05 May 2008 03:21:52 -0400
parents a1dbe9d80eee
children eb63fbe60fab
comparison
equal deleted inserted replaced
7757:4ff9a6fdde42 7758:8e14a01ffe9f
136 136
137 static void remove_event_hook (event_hook_fcn f); 137 static void remove_event_hook (event_hook_fcn f);
138 138
139 static void read_init_file (const std::string& file = std::string ()); 139 static void read_init_file (const std::string& file = std::string ());
140 140
141 static void re_read_init_file (void);
142
141 static bool filename_completion_desired (bool); 143 static bool filename_completion_desired (bool);
142 144
143 static bool filename_quoting_desired (bool); 145 static bool filename_quoting_desired (bool);
144 146
145 static int current_command_number (void); 147 static int current_command_number (void);
267 virtual void set_event_hook (startup_hook_fcn) { } 269 virtual void set_event_hook (startup_hook_fcn) { }
268 270
269 virtual void restore_event_hook (void) { } 271 virtual void restore_event_hook (void) { }
270 272
271 virtual void do_read_init_file (const std::string&) { } 273 virtual void do_read_init_file (const std::string&) { }
274
275 virtual void do_re_read_init_file (void) { }
272 276
273 virtual bool do_filename_completion_desired (bool) { return false; } 277 virtual bool do_filename_completion_desired (bool) { return false; }
274 278
275 virtual bool do_filename_quoting_desired (bool) { return false; } 279 virtual bool do_filename_quoting_desired (bool) { return false; }
276 280