Rebol 编程/unfocus
外观
UNFOCUS
移除当前键盘事件焦点。
UNFOCUS 是一个函数值。
unfocus: func [
"Removes the current key event focus."
/local tmp-face
][
tmp-face: focal-face
focal-face: none
caret: none
unlight-text
if tmp-face [show tmp-face]
]