From 71234ec0bd16c490239eefcf98069ceb7a7f7618 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 16 Jul 2014 23:53:30 +0200 Subject: Refactor wins_launch_external() Allow for passing an arbitrary number of arguments. This also allows us to remove wins_launch_external2() and use wins_launch_external() at all call sites instead. Signed-off-by: Lukas Fleischer --- src/wins.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/wins.c') diff --git a/src/wins.c b/src/wins.c index 7545a59..80ec17e 100644 --- a/src/wins.c +++ b/src/wins.c @@ -600,25 +600,8 @@ void wins_unprepare_external(void) * While inside interactive mode, launch the external command cmd on the given * file. */ -void wins_launch_external(const char *file, const char *cmd) +void wins_launch_external(const char *arg[]) { - const char *arg[] = { cmd, file, NULL }; - int pid; - - wins_prepare_external(); - if ((pid = shell_exec(NULL, NULL, *arg, arg))) - child_wait(NULL, NULL, pid); - wins_unprepare_external(); -} - -/* - * While inside interactive mode, launch the external command cmd on the given - * two files. - */ -void wins_launch_external2(const char *file1, const char *file2, - const char *cmd) -{ - const char *arg[] = { cmd, file1, file2, NULL }; int pid; wins_prepare_external(); -- cgit v1.2.3-54-g00ecf