+ rt "$@" -editor mhbuild
+}
+
+
+#### Internal function for use by calendar response functions below.
+#### Pulls "-a address" out of command line arguments.
+mhical_attendee() {
+ mhical_prev=
+ mhical_attendee=
+ for arg in "$@"; do
+ test "$mhical_prev" = -a && mhical_attendee="$arg"
+ mhical_prev="$arg"
+ done
+ unset arg
+ unset mhical_prev
+ echo "$mhical_attendee"