diff options
Diffstat (limited to 'appl/lib/ecmascript/builtin.b')
| -rw-r--r-- | appl/lib/ecmascript/builtin.b | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/ecmascript/builtin.b b/appl/lib/ecmascript/builtin.b index c8374f35..8eb12ad6 100644 --- a/appl/lib/ecmascript/builtin.b +++ b/appl/lib/ecmascript/builtin.b @@ -1371,7 +1371,7 @@ tolower(c: int): int toupper(c: int): int { - if(c >= 'a' && c <= 'a') + if(c >= 'a' && c <= 'z') return c - 'a' + 'A'; return c; } |
