# (C) 2010 magicant

# Completion script for the "suspend" built-in command.

function completion/suspend {

	typeset OPTIONS ARGOPT PREFIX
	OPTIONS=( #>#
	"f --force; suppress warning about possible deadlock"
	"--help"
	) #<#

	command -f completion//parseoptions -es
	case $ARGOPT in
	(-)
		command -f completion//completeoptions
		;;
	(*)
		;;
	esac

}


# vim: set ft=sh ts=8 sts=8 sw=8 noet:
