about summary refs log tree commit diff stats
path: root/src/command/cmd_ac.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-11-05 09:35:19 +0100
committerMichael Vetter <jubalh@iodoru.org>2020-11-05 09:35:19 +0100
commit711ea4887fb97de8f6622fe19ec114e9be8fa8f9 (patch)
tree81bd683ec246bb6cb295a52e98df4fbf79988805 /src/command/cmd_ac.c
parent38978b153b1f9a9c155382077c5c7034e6f23525 (diff)
downloadprofani-tty-711ea4887fb97de8f6622fe19ec114e9be8fa8f9.tar.gz
Simplify _executable_autocomplete()
Diffstat (limited to 'src/command/cmd_ac.c')
-rw-r--r--src/command/cmd_ac.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c
index 31156e15..6a5e11ad 100644
--- a/src/command/cmd_ac.c
+++ b/src/command/cmd_ac.c
@@ -4135,11 +4135,8 @@ _executable_autocomplete(ProfWin* window, const char* const input, gboolean prev
     char* result = NULL;
 
     result = autocomplete_param_with_ac(input, "/executable", executable_ac, TRUE, previous);
-    if (result) {
-        return result;
-    }
 
-    return NULL;
+    return result;
 }
 
 static char*