| Index: tools/js2c.py | 
| diff --git a/tools/js2c.py b/tools/js2c.py | 
| index fb6d6c54a881e20cd60aad60673c9406c9e077e9..d568556ebfcd7df11df10051188cb8ff7635b770 100755 | 
| --- a/tools/js2c.py | 
| +++ b/tools/js2c.py | 
| @@ -50,6 +50,7 @@ def CompressScript(lines): | 
| # Note that we could easily compress the scripts mode but don't | 
| # since we want it to remain readable. | 
| lines = re.sub('//.*\n', '\n', lines) # end-of-line comments | 
| +  lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments. | 
| lines = re.sub('\s+\n+', '\n', lines) # trailing whitespace | 
| return lines | 
|  | 
|  |