diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2001-07-02 06:26:22 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2001-07-02 06:26:22 +0000 |
commit | 8337181f54c3501595fb014edfb15b1033b90568 (patch) | |
tree | 94e2f404a75d20a7c89d70f77fdf91600a108911 /win32 | |
parent | f341dd84acf9fcf54aaae4728b96117b8fa43aea (diff) | |
download | perl-8337181f54c3501595fb014edfb15b1033b90568.tar.gz |
win32 fixes: more spurious CRs
p4raw-id: //depot/perl@11065
Diffstat (limited to 'win32')
-rw-r--r-- | win32/mdelete.bat | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/win32/mdelete.bat b/win32/mdelete.bat index 0e7e8bda0a..69a19b7637 100644 --- a/win32/mdelete.bat +++ b/win32/mdelete.bat @@ -13,18 +13,17 @@ del %file% goto nextfile :end -@echo off
-rem ! This is a batch file to delete all the files on its
-rem ! command line, to work around command.com's del command's
-rem ! braindeadness
-rem !
-rem ! -- BKS, 11-11-2000
-
-:nextfile
-set file=%1
-shift
-if "%file%"=="" goto end
-del %file%
-goto nextfile
-:end
-
+@echo off +rem ! This is a batch file to delete all the files on its +rem ! command line, to work around command.com's del command's +rem ! braindeadness +rem ! +rem ! -- BKS, 11-11-2000 + +:nextfile +set file=%1 +shift +if "%file%"=="" goto end +del %file% +goto nextfile +:end |