mirror of https://github.com/MidnightCommander/mc
* complete.h: Move CompletionFunction definition ...
* complete.c: ... here.
This commit is contained in:
parent
714f3ee8a7
commit
a8a7443e91
|
@ -1,5 +1,8 @@
|
|||
2003-10-24 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* complete.h: Move CompletionFunction definition ...
|
||||
* complete.c: ... here.
|
||||
|
||||
* color.c (dealloc_color_pairs): Rename to ...
|
||||
(done_colors): ... this.
|
||||
* layout.c (done_screen): Call done_colors() here ...
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
#include "main.h"
|
||||
#include "key.h" /* XCTRL and ALT macros */
|
||||
|
||||
typedef char *CompletionFunction (char *, int);
|
||||
|
||||
/* This flag is used in filename_completion_function */
|
||||
static int ignore_filenames = 0;
|
||||
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
#define INPUT_COMPLETE_USERNAMES 16
|
||||
#define INPUT_COMPLETE_CD 32
|
||||
|
||||
typedef char *CompletionFunction (char *, int);
|
||||
|
||||
void free_completions (WInput *);
|
||||
void complete (WInput *);
|
||||
|
||||
|
|
Loading…
Reference in New Issue