:
# switchkey.sh SCCSID(@(#)switchkey.sh	1.3   LCC)  /* Mod Time 21:29:54 11/25/89 */
#
#	@(#)switchkey.sh	1.3	11/25/89 21:29:54
#
#		******** important *********
# Switchkey is shared by Merge and Xsight. Modifications of this 
# script should be agreed by both parties.
#
[ -f /usr/lib/merge/swkey ] && 	MRGSWKEY=/usr/lib/merge/swkey
[ -f /usr/bin/X11/xswkey  ] && 	XSWKEY=/usr/bin/X11/xswkey


if [ "$MRGSWKEY" != "" ] && [ "$XSWKEY" != "" ]
then
	$XSWKEY $* 2>/dev/null || $MRGSWKEY $*
elif [ "$MRGSWKEY" != "" ]
then
	$MRGSWKEY $*
else
	$XSWKEY $*
fi
