/*****************************************************************************

	ExeAtS()

	This function handles an at-sign command modifier.

	The at-sign character modifies commands which follow it.

	This function implements the at-sign modifier by setting a bit in
the CmdMod variable.  Commands which are sensitive to at-sign modification
check CmdMod explicitly.

*****************************************************************************/

#include "ZPort.h"		/* define portability identifiers */
#include "DefTeco.h"		/* define general identifiers */

EXTERN	BYTE	CmdMod;		/* command modifiers flags for @, :, etc. */


DEFAULT ExeAtS()		/* execute a @ (at sign) command */
{
#if DEBUGGING
DbgInd+=2;if(DbgLvl>=1){DbgMsg();DbgDBf("ExeAtS: called.\015\012");DbgROf();}
#endif

	CmdMod |= ATSIGN;		/* set at sign */
#if DEBUGGING
if(DbgLvl>=1)
{DbgMsg();DbgDBf("ExeAtS: returning SUCCESS.\015\012");DbgROf();}DbgInd-=2;
#endif
	return(SUCCESS);
}
