diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-07 17:07:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-07 17:07:21 +0200 |
commit | c0cba4d9b1d8a5218fd46c4ad4659177deebe503 (patch) | |
tree | 21035e0c8fc73a1fba7ced262c45dfa1888d39f5 /src/structs.h | |
parent | b92159d59ef00414d50ccb95e59eb4b51f684874 (diff) | |
download | vim-git-c0cba4d9b1d8a5218fd46c4ad4659177deebe503.tar.gz |
Fixed: on MS-Windows completion of shell commands didn't work.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h index 31f71d23e..884d6a9fe 100644 --- a/src/structs.h +++ b/src/structs.h @@ -457,8 +457,8 @@ typedef struct expand #endif int xp_backslash; /* one of the XP_BS_ values */ #ifndef BACKSLASH_IN_FILENAME - int xp_shell; /* for a shell command more characters - need to be escaped */ + int xp_shell; /* TRUE for a shell command, more + characters need to be escaped */ #endif int xp_numfiles; /* number of files found by file name completion */ |