commit bash-20180112 snapshot

This commit is contained in:
Chet Ramey
2018-01-16 09:57:29 -05:00
parent 879213c630
commit 911ae06ca9
13 changed files with 302 additions and 21 deletions
+11
View File
@@ -77,6 +77,12 @@ typedef struct compspec {
#define COPT_PLUSDIRS (1<<7)
#define COPT_NOSORT (1<<8)
#define COPT_LASTUSER COPT_NOSORT
#define PCOMP_RETRYFAIL (COPT_LASTUSER << 1)
#define PCOMP_NOTFOUND (COPT_LASTUSER << 2)
/* List of items is used by the code that implements the programmable
completions. */
typedef struct _list_of_items {
@@ -103,7 +109,12 @@ typedef struct _list_of_items {
#define DEFAULTCMD "_DefaultCmD_"
extern HASH_TABLE *prog_completes;
extern char *pcomp_line;
extern int pcomp_ind;
extern int prog_completion_enabled;
extern int progcomp_alias;
/* Not all of these are used yet. */
extern ITEMLIST it_aliases;