1# (C) 2010 magicant
2
3# Completion script for the "return" built-in command.
4
5function completion/return {
6
7	typeset OPTIONS ARGOPT PREFIX
8	OPTIONS=( #>#
9	"n --no-return; don't return; just return the specified exit status"
10	"--help"
11	) #<#
12
13	command -f completion//parseoptions -es
14	case $ARGOPT in
15	(-)
16		command -f completion//completeoptions
17		;;
18	esac
19
20}
21
22
23# vim: set ft=sh ts=8 sts=8 sw=8 noet:
24