X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2Feval.ml;h=3363eefed5068764589d1486a1cd0f1cd3e282d7;hb=3258e6938ac266998ced1394792e1a3a44779526;hp=4589a40725b35541c3d0171f425e13d2297d608a;hpb=881b2e9b7bad0da8f44418e9e6558710db5ce690;p=goals.git diff --git a/src/eval.ml b/src/eval.ml index 4589a40..3363eef 100644 --- a/src/eval.ml +++ b/src/eval.ml @@ -186,11 +186,11 @@ and run_code_to_string_list env loc code = i, lines and prepare_code env loc (code, quiet) = - let quiet = if Cmdline.debug_flag then false else quiet in + let quiet = if Cmdline.debug_flag () then false else quiet in 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 @@ -270,18 +270,18 @@ and call_function_really env loc name returning code = match returning with | RetExpr -> let r, b = run_code_to_string env loc code in - if r <> 0 then ( - eprintf "*** function ‘%s’ failed with exit code %d\n" name r; - exit 1 - ); + if r <> 0 then + failwithf "function ‘%s’ failed with exit code %d" name r; Parse.parse_expr (sprintf "function:%s" name) b | RetString -> let r, b = run_code_to_string env loc code in - if r <> 0 then ( - eprintf "*** function ‘%s’ failed with exit code %d\n" name r; - exit 1 - ); + 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 ->