ldmud-3.3.719/
ldmud-3.3.719/doc/
ldmud-3.3.719/doc/efun.de/
ldmud-3.3.719/doc/efun/
ldmud-3.3.719/doc/man/
ldmud-3.3.719/doc/other/
ldmud-3.3.719/mud/
ldmud-3.3.719/mud/heaven7/
ldmud-3.3.719/mud/lp-245/
ldmud-3.3.719/mud/lp-245/banish/
ldmud-3.3.719/mud/lp-245/doc/
ldmud-3.3.719/mud/lp-245/doc/examples/
ldmud-3.3.719/mud/lp-245/doc/sefun/
ldmud-3.3.719/mud/lp-245/log/
ldmud-3.3.719/mud/lp-245/obj/Go/
ldmud-3.3.719/mud/lp-245/players/lars/
ldmud-3.3.719/mud/lp-245/room/death/
ldmud-3.3.719/mud/lp-245/room/maze1/
ldmud-3.3.719/mud/lp-245/room/sub/
ldmud-3.3.719/mud/lp-245/secure/
ldmud-3.3.719/mud/sticklib/
ldmud-3.3.719/mud/sticklib/src/
ldmud-3.3.719/mudlib/deprecated/
ldmud-3.3.719/mudlib/uni-crasher/
ldmud-3.3.719/pkg/
ldmud-3.3.719/pkg/debugger/
ldmud-3.3.719/pkg/diff/
ldmud-3.3.719/pkg/misc/
ldmud-3.3.719/src/
ldmud-3.3.719/src/autoconf/
ldmud-3.3.719/src/ptmalloc/
ldmud-3.3.719/src/util/
ldmud-3.3.719/src/util/erq/
ldmud-3.3.719/src/util/indent/hosts/next/
ldmud-3.3.719/src/util/xerq/
ldmud-3.3.719/src/util/xerq/lpc/
ldmud-3.3.719/src/util/xerq/lpc/www/
ldmud-3.3.719/test/generic/
ldmud-3.3.719/test/inc/
ldmud-3.3.719/test/t-0000398/
ldmud-3.3.719/test/t-0000548/
ldmud-3.3.719/test/t-030925/
ldmud-3.3.719/test/t-040413/
ldmud-3.3.719/test/t-041124/
ldmud-3.3.719/test/t-language/
SYNOPSIS
        int remove_input_to (object player)
        int remove_input_to (object player, string fun)
        int remove_input_to (object player, closure fun)
        int remove_input_to (object player, object fun)
        int remove_input_to (object player, object ob, string fun)

DESCRIPTION
        Remove a pending input_to from the interactive <player> object.
        If the optional <fun> is not given, the most recently added input_to
        is removed.

        If the optional <fun> is given, the efun tries to find and remove the
        most recently added input_to matching the <fun> argument:
         - <fun> is a string: the input_to functionname has to match
         - <fun> is an object: the object the input_to function is bound to has
                               to match
         - <fun> is a closure: the input_to closure has to match.
         - <ob> and <fun> are given: both the object and the functionname have
                               to match

        Return 1 on success, or 0 on failure (no input_to found, object is not
        interactive or has no input_to pending).

EXAMPLES
        // Remove all pending input_to from the current user, if any.
        while (remove_input_to(this_interactive())) ;

HISTORY
        Introduced in LDMud 3.2.9 / 3.3.119 .

SEE ALSO
        input_to(E), find_input_to(E), input_to_info(E), query_input_pending(E)