Mercurial > hg > octave-nkf
comparison liboctave/cmd-edit.h @ 3933:f9ea3dcf58ee
[project @ 2002-05-15 03:21:00 by jwe]
author | jwe |
---|---|
date | Wed, 15 May 2002 03:21:01 +0000 |
parents | 957d7d6ab0e0 |
children | 7690958e7726 |
comparison
equal
deleted
inserted
replaced
3932:2e2e32198722 | 3933:f9ea3dcf58ee |
---|---|
71 | 71 |
72 static void restore_terminal_state (void); | 72 static void restore_terminal_state (void); |
73 | 73 |
74 static void blink_matching_paren (bool flag); | 74 static void blink_matching_paren (bool flag); |
75 | 75 |
76 static void command_editor::set_basic_word_break_characters | |
77 (const std::string& s); | |
78 | |
79 static void command_editor::set_completer_word_break_characters | |
80 (const std::string& s); | |
81 | |
76 static void set_basic_quote_characters (const std::string& s); | 82 static void set_basic_quote_characters (const std::string& s); |
77 | 83 |
78 static void set_completion_append_character (char c); | 84 static void set_completion_append_character (char c); |
79 | 85 |
80 static void set_completion_function (completion_fcn f); | 86 static void set_completion_function (completion_fcn f); |
156 virtual std::string newline_chars (void) { return "\n"; } | 162 virtual std::string newline_chars (void) { return "\n"; } |
157 | 163 |
158 virtual void do_restore_terminal_state (void) { } | 164 virtual void do_restore_terminal_state (void) { } |
159 | 165 |
160 virtual void do_blink_matching_paren (bool) { } | 166 virtual void do_blink_matching_paren (bool) { } |
167 | |
168 virtual void do_set_basic_word_break_characters (const std::string&) { } | |
169 | |
170 virtual void do_set_completer_word_break_characters (const std::string&) { } | |
161 | 171 |
162 virtual void do_set_basic_quote_characters (const std::string&) { } | 172 virtual void do_set_basic_quote_characters (const std::string&) { } |
163 | 173 |
164 virtual void do_set_completion_append_character (char) { } | 174 virtual void do_set_completion_append_character (char) { } |
165 | 175 |