#
# usage:	echon.sh
#
# abstract:	This Bourne Shell script echos a string without a newline.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1992-1998 The Mathworks, Inc. All Rights Reserved.
# $Revision: 1.5 $  $Date: 1998/12/24 17:31:31 $
#----------------------------------------------------------------------------
#
	if [ "`echo -n`" != "" ]; then
	    echo "$mesg\c"
	else
            echo -n "$mesg"
	fi
