From 21cc37816361342c3aeee8822f98dd0d82b05bae Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 18 Mar 2015 19:56:48 -0700 Subject: [PATCH] Make @error fatal. Resolves #967. --- eval.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eval.cpp b/eval.cpp index 9589813d4..6258084d4 100644 --- a/eval.cpp +++ b/eval.cpp @@ -265,10 +265,7 @@ namespace Sass { } string result(unquote(message->perform(&to_string))); - Backtrace top(backtrace, e->pstate(), ""); - cerr << "Error: " << result; - cerr << top.to_string(true); - cerr << endl << endl; + error(result, e->pstate()); return 0; }