* complete.h: Move CompletionFunction definition ...

* complete.c: ... here.
This commit is contained in:
Pavel Roskin 2003-10-24 22:11:57 +00:00
parent 714f3ee8a7
commit a8a7443e91
3 changed files with 5 additions and 2 deletions

View File

@ -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 ...

View File

@ -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;

View File

@ -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 *);