From 116e8f5af0dac7be81840cfff46bd0774d239b53 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 25 Aug 2014 08:48:25 +0200 Subject: [PATCH] fix projects output cant be run anymore when empty symstring --- src/ce_main.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ce_main.pas b/src/ce_main.pas index a44277f1..65822b7d 100644 --- a/src/ce_main.pas +++ b/src/ce_main.pas @@ -1371,10 +1371,10 @@ begin repeat prm := ExtractDelimited(i, runArgs, [' ']); prm := expandSymbolicString(prm); - if prm <> '' then + if prm <> '``' then runProc.Parameters.AddText(prm); Inc(i); - until prm = ''; + until prm = '``'; procname := aProject.outputFilename; if not fileExists(procname) then