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:
parent
8bbfa33a7c
commit
42af15470f
1 changed files with 1 additions and 1 deletions
|
@ -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}.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue