From 7846ca8361ce4d151227e427ac639bc41e171f2b Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 11 Nov 2005 21:37:44 +0000 Subject: [PATCH] wrong result for bitwise not (part of bug #1349810) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4390 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/int.but | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/src/int.but b/Docs/src/int.but index 6a1c1b3b..6517f29d 100644 --- a/Docs/src/int.but +++ b/Docs/src/int.but @@ -35,7 +35,7 @@ Combines value1 and (depending on OP) value2 into the user variable $x. OP is de \b \e{<<} LEFT SHIFTs value1 by value2 -\b \e{~} BITWISE NEGATEs value1 (i.e. 7 becomes 4294917288) +\b \e{~} BITWISE NEGATEs value1 (i.e. 7 becomes 4294967288) \b \e{!} LOGICALLY NEGATEs value1 (i.e. 7 becomes 0)