summaryrefslogtreecommitdiffstats
path: root/src/cmdexpand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmdexpand.c')
-rw-r--r--src/cmdexpand.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cmdexpand.c b/src/cmdexpand.c
index ff6aa0d033..fb329a57d7 100644
--- a/src/cmdexpand.c
+++ b/src/cmdexpand.c
@@ -722,8 +722,9 @@ ExpandOne(
findex = -1; // next p_wc gets first one
}
- // Concatenate all matching names
- if (mode == WILD_ALL && xp->xp_numfiles > 0)
+ // Concatenate all matching names. Unless interrupted, this can be slow
+ // and the result probably won't be used.
+ if (mode == WILD_ALL && xp->xp_numfiles > 0 && !got_int)
{
len = 0;
for (i = 0; i < xp->xp_numfiles; ++i)