From 5cc43bc46d9039b38eeb647441cdaf078eab2360 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 4 Aug 2006 15:35:24 +0000 Subject: [PATCH] improvements by Joe Siebenmann git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4720 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/file.but | 2 +- Docs/src/int.but | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/src/file.but b/Docs/src/file.but index 3ac20013..51948995 100644 --- a/Docs/src/file.but +++ b/Docs/src/file.but @@ -50,7 +50,7 @@ Reads a byte from a file opened with FileOpen. The byte is stored in the output \c handle offset [mode] [user_var(new position)] -Seeks a file opened with FileOpen. If mode is omitted or specified as SET, the file is positioned to "offset". If mode is specified as CUR, then the file pointer is moved by offset. If mode is specified as END, the file pointer is set to a position relative to EOF. If the final parameter "new position" is specified, the new file position will be stored to that variable. +Seeks a file opened with FileOpen. If mode is omitted or specified as SET, the file is positioned to "offset", relative to the beginning of the file. If mode is specified as CUR, then the file is positioned to "offset", relative to the current file position. If mode is specified as END, then the file is positioned to "offset", relative to the end of the file. If the final parameter "new position" is specified, the new file position will be stored to that variable. \c ClearErrors \c FileOpen $0 $INSTDIR\file.dat r diff --git a/Docs/src/int.but b/Docs/src/int.but index 6517f29d..4e70dedc 100644 --- a/Docs/src/int.but +++ b/Docs/src/int.but @@ -13,7 +13,7 @@ Formats the number in "numberstring" using the format "format", and sets the out \c user_var(output) value1 OP [value2] -Combines value1 and (depending on OP) value2 into the user variable $x. OP is defined as one of the following: +Combines value1 and (depending on OP) value2 into the specified user variable (\c{user_var}). OP is defined as one of the following: \b \e{+} ADDs value1 and value2