You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FIX: HELP was providing invalid info if value of path was of ERROR! type
fixes: metaeducation/rebol-issues#2308
With this modification it works like:
```
>> help foo
No information on foo
>> help foo/boo
No information on foo/boo (path has no value)
>> help system/foo
There is no foo in path system/foo
>> ? system/state/last-error
SYSTEM/STATE/LAST-ERROR is a none of value: none
>> 1 / 0
** Math error: attempt to divide by zero
** Where: /
** Near: / 0
>> ? system/state/last-error
SYSTEM/STATE/LAST-ERROR is an error of value: make error! [
code: 400
type: 'Math
id: 'zero-divide
arg1: none
arg2: none
arg3: none
near: [/ 0]
where: [/]
]
```
0 commit comments