#
# This awk script is used to select material to include in gpm-xterm.c
#


# at the beginning: don't copy
BEGIN {CP=0}

/gpm-xterm-begin/ {
		  CP=1;
		  printf "\n/******* begin insertion - %s:%i */\n",
			FILENAME,FNR
		  continue
		  }
			
/gpm-xterm-end/   {
		  CP=0;
		  printf "/******* end insertion - %s:%i */\n\n",
			FILENAME,FNR
		  continue
		  }


CP==1	{print}

