From b3310a3170ec23be47410cc386e64bbb0df5822d Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 20 Mar 2007 19:38:19 +0000 Subject: [PATCH] not using System.dll for case-sensitive comparison anymore git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5003 212acab6-be3b-0410-9dea-997c60f758d6 --- Include/LogicLib.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/LogicLib.nsh b/Include/LogicLib.nsh index fc44fdb2..2bf3b321 100644 --- a/Include/LogicLib.nsh +++ b/Include/LogicLib.nsh @@ -42,7 +42,7 @@ ; a == b; a != b ; Additional case-insensitive string tests (using System.dll): ; a S< b; a S>= b; a S> b; a S<= b -; Case-sensitive string tests (using System.dll): +; Case-sensitive string tests: ; a S== b; a S!= b ; Standard (built-in) signed integer tests: ; a = b; a <> b; a < b; a >= b; a > b; a <= b