From ad75792512928ab6a582621fefa10151519fd04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 10 May 2007 17:24:52 +0000 Subject: [PATCH] Updated script that checks notepad++ --- checknpp.bat | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/checknpp.bat b/checknpp.bat index d808461af..1b6ef3f78 100644 --- a/checknpp.bat +++ b/checknpp.bat @@ -12,14 +12,17 @@ FOR %%s IN (npp41\scintilla\src\*.cxx) DO ( ) -date /t > powereditor.txt -time /t >> powereditor.txt +date /t > npp41.txt +time /t >> npp41.txt + +ECHO Notepad++ 4.1 >> npp41.txt +ECHO ====================================== >> npp41.txt FOR %%s IN (npp41\PowerEditor\src\*.cpp) DO ( ECHO %%s - ECHO ---------------------------------- >> powereditor.txt - ECHO %%s >> powereditor.txt - cppcheck %%s 2>> powereditor.txt + ECHO ---------------------------------- >> npp41.txt + ECHO %%s >> npp41.txt + cppcheck %%s 2>> npp41.txt )