summaryrefslogtreecommitdiff
path: root/readline/complete.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2014-12-30 21:14:25 +0200
committerEli Zaretskii <eliz@gnu.org>2014-12-30 21:14:25 +0200
commit05942d8a1b618e1c850b67ad76374f8c59743df5 (patch)
tree3b7b694a82d3890f6a336a6094c2a18085b92608 /readline/complete.c
parent1a667e98b749cc82920f2cfd25d07139e5e03136 (diff)
downloadbinutils-gdb-05942d8a1b618e1c850b67ad76374f8c59743df5.tar.gz
Fix executable indicator in file name completion on Windows.
* complete.c (stat_char) [_WIN32]: Don't use 'access' and X_OK on Windows, they don't work. Instead, look at the file-name extension to determine whether the file is executable.
Diffstat (limited to 'readline/complete.c')
-rw-r--r--readline/complete.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/readline/complete.c b/readline/complete.c
index a9c46dfc15e..a5ce8039e50 100644
--- a/readline/complete.c
+++ b/readline/complete.c
@@ -598,8 +598,21 @@ stat_char (filename)
#endif
else if (S_ISREG (finfo.st_mode))
{
+#if defined (_WIN32) && !defined (__CYGWIN__)
+ /* Windows 'access' doesn't support X_OK and on latest Windows
+ versions even invokes an invalid parameter exception. */
+ char *ext = strrchr (filename, '.');
+
+ if (ext
+ && (_rl_stricmp (ext, ".exe") == 0
+ || _rl_stricmp (ext, ".cmd") == 0
+ || _rl_stricmp (ext, ".bat") == 0
+ || _rl_stricmp (ext, ".com") == 0))
+ character = '*';
+#else
if (access (filename, X_OK) == 0)
character = '*';
+#endif
}
return (character);
}