Rebol Programming/remove-event-func

USAGE:

REMOVE-EVENT-FUNC funct 

DESCRIPTION:

Remove an event function previously added.

REMOVE-EVENT-FUNC is a function value.

ARGUMENTS

  • funct -- (Type: function)

SOURCE CODE

remove-event-func: func [
    "Remove an event function previously added." 
    funct [function!]
][
    remove find system/view/screen-face/feel/event-funcs :funct
]