Update NEWS, cleanup
This commit is contained in:
parent
696273558e
commit
0f1fd2eb3a
4
NEWS
4
NEWS
|
@ -20,6 +20,10 @@
|
|||
|
||||
* kike: add support for IRCv3.2 server-time
|
||||
|
||||
* ZyklonB: plugins now run in a dedicated data directory
|
||||
|
||||
* ZyklonB: added a factoids plugin
|
||||
|
||||
* Remote addresses are now resolved asynchronously
|
||||
|
||||
* Various bugfixes
|
||||
|
|
|
@ -213,7 +213,7 @@ struct input_vtable
|
|||
void (*hide) (void *input);
|
||||
/// Show the prompt if hidden
|
||||
void (*show) (void *input);
|
||||
/// Change the prompt string; takes ownership
|
||||
/// Retrieve current prompt string
|
||||
const char *(*get_prompt) (void *input);
|
||||
/// Change the prompt string; takes ownership
|
||||
void (*set_prompt) (void *input, char *prompt);
|
||||
|
@ -222,7 +222,6 @@ struct input_vtable
|
|||
|
||||
/// Create a new input buffer
|
||||
input_buffer_t (*buffer_new) (void *input);
|
||||
// XXX: there's also destroy_buffer
|
||||
/// Destroy an input buffer
|
||||
void (*buffer_destroy) (void *input, input_buffer_t buffer);
|
||||
/// Switch to a different input buffer
|
||||
|
|
Loading…
Reference in New Issue