From 364b7bf4a7c99160a8151d30dd7112f44c68ec7c Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 21 Nov 2002 21:51:58 +0000 Subject: [PATCH] Single back-slash git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1806 212acab6-be3b-0410-9dea-997c60f758d6 --- Docs/src/script.but | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/src/script.but b/Docs/src/script.but index 93ec4b03..01fc4eab 100644 --- a/Docs/src/script.but +++ b/Docs/src/script.but @@ -27,7 +27,7 @@ A NSIS Script File (.nsi) is just a text file with a series of commands. \c MessageBox MB_OK "I'll be happy" ; this one puts a ' inside a string \c MessageBox MB_OK 'And he said to me "Hi there!"' ; this one puts a " inside a string \c MessageBox MB_OK `And he said to me "I'll be fucked!"` ; this one puts both ' and "s inside a string -\c MessageBox MB_OK "$\\"A quote from a wise man$\\" said the wise man" ; this one shows escaping of quotes +\c MessageBox MB_OK "$\"A quote from a wise man$\" said the wise man" ; this one shows escaping of quotes \b To extend a command over multiple lines, use a backslash (\\) at the end of the line, and the next line will effectively be concatenated the end of it. For example: