diff options
| author | Julie Lala <jules@okfoc.us> | 2015-05-23 23:25:37 +0200 |
|---|---|---|
| committer | Julie Lala <jules@okfoc.us> | 2015-05-23 23:25:37 +0200 |
| commit | 36591f5b1a70f562c8f581eb6731d5ddb7b50823 (patch) | |
| tree | 8719d144c6b5fae3b8050b34db0e86103edc846c /js/lex.js | |
| parent | 36c7df9c9c680d6b6639654e0a28a435e48facf5 (diff) | |
FIX percent thing
Diffstat (limited to 'js/lex.js')
| -rw-r--r-- | js/lex.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ Lex.prototype.ascii = function(){ } Lex.prototype.sanitize = function(){ switch (this.char) { - case "%": return "%%" + case "%": return "%" case undefined: case "": return " " default: return this.char |
