Commit 4b4dd300 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

cmd: Avoid excess newline after TYPE outputs file contents.

parent f43297f9
......@@ -2532,8 +2532,6 @@ void WCMD_type (WCHAR *command) {
WCMD_output_asis (buffer);
}
CloseHandle (h);
if (!writeHeaders)
WCMD_output_asis (newline);
}
}
}
......
......@@ -58,6 +58,16 @@ echo P%ERRORLEVEL%
echo %ERRORLEVEL%S
echo P%ERRORLEVEL%S
echo ------------ Testing type ------------
echo bar> foobaz
@echo on
type foobaz
echo ***
@echo off
type foobaz
echo ***
del foobaz
echo ------------ Testing if/else --------------
echo if/else should work with blocks
if 0 == 0 (
......
......@@ -70,6 +70,15 @@ ERRORLEVEL
P0
0S
P0S
------------ Testing type ------------
@pwd@>type foobaz@space@
bar
@pwd@>echo ***@space@
***
bar
***
------------ Testing if/else --------------
if/else should work with blocks
if seems to work
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment