From 42af15470f0985fd125531fe02eb0a9d4a557cba Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 22 Oct 2004 11:36:45 +0000 Subject: [PATCH] dollar should come before the backslash when escaping quotes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3745 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/tutorial.but | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/src/tutorial.but b/Docs/src/tutorial.but index d0d3015a..3a8eca66 100644 --- a/Docs/src/tutorial.but +++ b/Docs/src/tutorial.but @@ -17,7 +17,7 @@ In a NSIS script every line is treated as a command. If your command is too long \c Messagebox MB_OK|MB_ICONINFORMATION \ \c "This is a sample that shows how to use line breaks for larger commands in NSIS scripts" -If you want to use a double-quote in a string you can either use \\$" to escape the quote or quote the string with a different type of quote such as ` or '. +If you want to use a double-quote in a string you can either use $\\\\" to escape the quote or quote the string with a different type of quote such as ` or '. For more details about the script format, see \R{fileformat}{Script File Format}.