From 44476d783ccc4553392b0543ce27dab6fb0ee402 Mon Sep 17 00:00:00 2001 From: johnvg Date: Thu, 11 Dec 2003 12:14:27 +0000 Subject: use 'Error: ' instead of '[Backend]' in the backend too old or new error messages, so that the IDE recognizes this as an error instead of info. git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1425 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d --- backend/backendinterface.icl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backend') diff --git a/backend/backendinterface.icl b/backend/backendinterface.icl index 7399fe4..c17aa81 100644 --- a/backend/backendinterface.icl +++ b/backend/backendinterface.icl @@ -15,11 +15,11 @@ checkVersion VersionsAreCompatible errorFile = (True, errorFile) checkVersion VersionObservedIsTooNew errorFile # errorFile - = fwrites "[Backend] the back end library is too new\n" errorFile + = fwrites "Error: the back end library is too new\n" errorFile = (False, errorFile) checkVersion VersionObservedIsTooOld errorFile # errorFile - = fwrites "[Backend] the back end library is too old\n" errorFile + = fwrites "Error: the back end library is too old\n" errorFile = (False, errorFile) backEndInterface :: !{#Char} [{#Char}] !ListTypesOption !{#Char} !PredefinedSymbols !FrontEndSyntaxTree !Int !*VarHeap !*AttrVarHeap !*File !*Files -> (!Bool, !*VarHeap, !*AttrVarHeap, !*File, !*Files) -- cgit v1.2.3