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
This commit is contained in:
kichik 2004-10-22 11:36:45 +00:00
parent 8bbfa33a7c
commit 42af15470f

View file

@ -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}.