Rebol Programming/set-para

USAGE:

edit
SET-PARA aface 'word val 

DESCRIPTION:

edit

(undocumented)

SET-PARA is a function value.

ARGUMENTS

edit
  • aface -- (Type: any)
  • word -- (Type: any)
  • val -- (Type: any)

SOURCE CODE

edit
set-para: func [aface 'word val][
    if none? aface/para [aface/para: vid-face/para] 
    if not flag-face? aface para [aface/para: make aface/para [] flag-face aface para] 
    set in aface/para word val
]