Skip to content

Commit f2d6f27

Browse files
committed
[css2] Removed -n from echo, as the echo used by /bin/sh has this behaviour
built-in. --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%40950
1 parent e6bf88b commit f2d6f27

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

css2/bin/Attic/todo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ pr ()
3636
prn ()
3737
{
3838
if [ $ARCH = "Linux" ]; then
39-
echo -e "$* \c"
39+
echo -e "$*\c"
4040
else
41-
echo -n "$*"
41+
echo "$*\c"
4242
fi
4343
}
4444

css2/bin/todo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ pr ()
3636
prn ()
3737
{
3838
if [ $ARCH = "Linux" ]; then
39-
echo -e "$* \c"
39+
echo -e "$*\c"
4040
else
41-
echo -n "$*"
41+
echo "$*\c"
4242
fi
4343
}
4444

0 commit comments

Comments
 (0)