diff options
| author | Charles.Forsyth <devnull@localhost> | 2007-09-05 19:39:21 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2007-09-05 19:39:21 +0000 |
| commit | 06965d10d9199bef760049aa302caf8c1c77e96f (patch) | |
| tree | e7edcbb5a35aef155d5710d9ca91510deb1f2410 /appl/lib | |
| parent | 4252603c74a95023984422e8cc3520cc3d9340ac (diff) | |
20070905-2038
Diffstat (limited to 'appl/lib')
| -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; } |
