X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2Feval.ml;h=3363eefed5068764589d1486a1cd0f1cd3e282d7;hb=d3356e11d92f09a2bcb9ba145594cf4b0531328f;hp=59f4ca4dc87b4b8f299c14b1e9a2add29b04f4da;hpb=ec7d2c76a7ae7447866522103b18107f154083cb;p=goals.git diff --git a/src/eval.ml b/src/eval.ml index 59f4ca4..3363eef 100644 --- a/src/eval.ml +++ b/src/eval.ml @@ -190,7 +190,7 @@ and prepare_code env loc (code, quiet) = let code = to_shell_script env loc code in "source " ^ Filename.quote Cmdline.prelude_sh_file ^ "\n" ^ "set -e\n" ^ - (if not quiet then "set -x\n" else "") ^ + (if not (Cmdline.silent ()) && not quiet then "set -x\n" else "") ^ "\n" ^ code @@ -278,6 +278,10 @@ and call_function_really env loc name returning code = let r, b = run_code_to_string env loc code in if r <> 0 then failwithf "function ‘%s’ failed with exit code %d" name r; + (* Remove a single trailing \n if present. *) + let b = + let len = String.length b in + if len > 0 && b.[len-1] = '\n' then String.sub b 0 (len-1) else b in Ast.EConstant (loc, Ast.CString b) | RetStrings ->