diff options
Diffstat (limited to 'deps/v8/tools/jsmin.py')
-rw-r--r-- | deps/v8/tools/jsmin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/tools/jsmin.py b/deps/v8/tools/jsmin.py index 250dea9d72..e82f3d031e 100644 --- a/deps/v8/tools/jsmin.py +++ b/deps/v8/tools/jsmin.py @@ -1,6 +1,6 @@ #!/usr/bin/python2.4 -# Copyright 2012 the V8 project authors. All rights reserved. +# Copyright 2009 the V8 project authors. All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: @@ -154,7 +154,7 @@ class JavaScriptMinifier(object): return var_name while True: identifier_first_char = self.identifier_counter % 52 - identifier_second_char = self.identifier_counter // 52 + identifier_second_char = self.identifier_counter / 52 new_identifier = self.CharFromNumber(identifier_first_char) if identifier_second_char != 0: new_identifier = ( |