From 59c74e0f34baa5e539634746b5a698dbe587ef82 Mon Sep 17 00:00:00 2001 From: djcb Date: Mon, 7 Oct 2013 23:15:00 +0300 Subject: [PATCH] * mu-config: fix typo --- mu/mu-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu/mu-config.c b/mu/mu-config.c index aa0caca4..1810ebe5 100644 --- a/mu/mu-config.c +++ b/mu/mu-config.c @@ -482,7 +482,7 @@ cmd_from_string (const char *str) #ifdef BUILD_GUILE /* if we don't recognize it and it's not an option, it may be * some script */ - if (str[0] == '-') + if (str[0] != '-') return MU_CONFIG_CMD_SCRIPT; #endif /*BUILD_GUILE*/