summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/vis.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/vis.c')
-rw-r--r--lib/libc/gen/vis.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/vis.c b/lib/libc/gen/vis.c
index 4f594eb..1d7e860 100644
--- a/lib/libc/gen/vis.c
+++ b/lib/libc/gen/vis.c
@@ -71,7 +71,8 @@ vis(dst, c, flag, nextc)
}
}
- if ((flag & VIS_GLOB) && (c == '*' || c == '?' || c == '['))
+ if ((flag & VIS_GLOB) &&
+ (c == '*' || c == '?' || c == '[' || c == '#'))
;
else if (isgraph(c) ||
((flag & VIS_SP) == 0 && c == ' ') ||
OpenPOWER on IntegriCloud