aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index c558ced..1b6f14d 100644
--- a/main.c
+++ b/main.c
@@ -2147,7 +2147,7 @@ static char *get_completion_prefix(Vis *vis, Filerange (*text_object)(Text *, si
static void insert_dialog_selection(Vis *vis, Filerange *range, const char *argv[]) {
char *out = NULL, *err = NULL;
- if (vis_pipe_collect(vis, range, true, argv, &out, &err) == 0) {
+ if (vis_pipe_collect(vis, range, argv, &out, &err) == 0) {
View *view = vis_view(vis);
size_t len = out ? strlen(out) : 0;
for (Cursor *c = view_cursors(view); c; c = view_cursors_next(c)) {