Remove some gratuitous use of non-ANSI characters that were making the Unicode patch harder to review.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5905 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
pabs3 2009-01-13 16:54:39 +00:00
parent bf6c65b158
commit 80c2fae5c1
9 changed files with 16 additions and 16 deletions

View file

@ -1,11 +1,11 @@
/* /*
NSIS Modern User Interface - Version 2.0 NSIS Modern User Interface - Version 2.0
Copyright © 2002-2008 Joost Verburg Copyright 2002-2008 Joost Verburg
*/ */
!echo "NSIS Modern User Interface version 2.0 - © 2002-2008 Joost Verburg" !echo "NSIS Modern User Interface version 2.0 - Copyright 2002-2008 Joost Verburg"
;-------------------------------- ;--------------------------------

View file

@ -1,4 +1,4 @@
Copyright © 2002-2008 Joost Verburg Copyright 2002-2008 Joost Verburg
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

View file

@ -1,11 +1,11 @@
/* /*
NSIS Modern User Interface - Version 1.8 NSIS Modern User Interface - Version 1.8
Copyright © 2002-2008 Joost Verburg Copyright 2002-2008 Joost Verburg
*/ */
!echo "NSIS Modern User Interface version 1.8 - © 2002-2008 Joost Verburg" !echo "NSIS Modern User Interface version 1.8 - Copyright 2002-2008 Joost Verburg"
;-------------------------------- ;--------------------------------

View file

@ -4,7 +4,7 @@ MultiUser.nsh
Installer configuration for multi-user Windows environments Installer configuration for multi-user Windows environments
Copyright © 2008 Joost Verburg Copyright 2008 Joost Verburg
*/ */

View file

@ -18,7 +18,7 @@ LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "A test comment" VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "A test comment"
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Fake company" VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Fake company"
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalTrademarks" "Test Application is a trademark of Fake company" VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalTrademarks" "Test Application is a trademark of Fake company"
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "© Fake company" VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright Fake company"
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Test Application" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Test Application"
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.2.3" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.2.3"

View file

@ -128,12 +128,12 @@ SectionIn 1 4 3
INIDelSuccess: INIDelSuccess:
ClearErrors ClearErrors
ReadRegStr $1 HKCR "software\microsoft" xyz_¢¢_does_not_exist ReadRegStr $1 HKCR "software\microsoft" xyz_cc_does_not_exist
IfErrors 0 NoError IfErrors 0 NoError
MessageBox MB_OK "could not read from HKCR\software\microsoft\xyz_¢¢_does_not_exist" MessageBox MB_OK "could not read from HKCR\software\microsoft\xyz_cc_does_not_exist"
Goto ErrorYay Goto ErrorYay
NoError: NoError:
MessageBox MB_OK "read '$1' from HKCR\software\microsoft\xyz_¢¢_does_not_exist" MessageBox MB_OK "read '$1' from HKCR\software\microsoft\xyz_cc_does_not_exist"
ErrorYay: ErrorYay:
SectionEnd SectionEnd

View file

@ -5,7 +5,7 @@ LangFile.nsh
Header file to create langauge files that can be Header file to create langauge files that can be
included with a single command. included with a single command.
Copyright © 2008 Joost Verburg Copyright 2008 Joost Verburg
* Either LANGFILE_INCLUDE or LANGFILE_INCLUDE_WITHDEFAULT * Either LANGFILE_INCLUDE or LANGFILE_INCLUDE_WITHDEFAULT
can be called from the script to include a language can be called from the script to include a language

View file

@ -49,7 +49,7 @@ o-----------------------------------------------------------------------------o
!verbose push !verbose push
!verbose 4 !verbose 4
!echo `${STRFUNC_INITMSGPRE}NSIS ${STRFUNC} ${STRFUNC_VER} - © ${STRFUNC_CREDITS}${STRFUNC_INITMSGPOST}` !echo `${STRFUNC_INITMSGPRE}NSIS ${STRFUNC} ${STRFUNC_VER} - Copyright ${STRFUNC_CREDITS}${STRFUNC_INITMSGPOST}`
!verbose pop !verbose pop
;Header File Function Init Message Prefix and Postfix ;Header File Function Init Message Prefix and Postfix
@ -82,13 +82,13 @@ o-----------------------------------------------------------------------------o
!verbose 4 !verbose 4
!ifndef `Un${ShortName}` !ifndef `Un${ShortName}`
!echo `${STRFUNC_FUNCMSGPRE}$ {Un${ShortName}} - © ${Credits}${STRFUNC_FUNCMSGPOST}` !echo `${STRFUNC_FUNCMSGPRE}$ {Un${ShortName}} - Copyright ${Credits}${STRFUNC_FUNCMSGPOST}`
!verbose pop !verbose pop
!define `Un${ShortName}` `!insertmacro FUNCTION_STRING_Un${ShortName}_Call` !define `Un${ShortName}` `!insertmacro FUNCTION_STRING_Un${ShortName}_Call`
!define `Un${ShortName}_INCLUDED` !define `Un${ShortName}_INCLUDED`
Function `un.${ShortName}` Function `un.${ShortName}`
!else !else
!echo `${STRFUNC_FUNCMSGPRE}$ {${ShortName}} - © ${Credits}${STRFUNC_FUNCMSGPOST}` !echo `${STRFUNC_FUNCMSGPRE}$ {${ShortName}} - Copyright ${Credits}${STRFUNC_FUNCMSGPOST}`
!verbose pop !verbose pop
!undef `${ShortName}` !undef `${ShortName}`
!define `${ShortName}` `!insertmacro FUNCTION_STRING_${ShortName}_Call` !define `${ShortName}` `!insertmacro FUNCTION_STRING_${ShortName}_Call`

View file

@ -4,7 +4,7 @@ VB6RunTime.nsh
Setup of Visual Basic 6.0 run-time files, including the Oleaut32.dll security update Setup of Visual Basic 6.0 run-time files, including the Oleaut32.dll security update
Copyright © 2008 Joost Verburg Copyright 2008 Joost Verburg
To obtain the run-time files, download and extract To obtain the run-time files, download and extract
http://nsis.sourceforge.net/vb6runtime.zip http://nsis.sourceforge.net/vb6runtime.zip