diff options
Diffstat (limited to 'unicode.js')
-rw-r--r-- | unicode.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,8 +68,8 @@ let PLUGIN_INFO = commands.addUserCommand( ['unicode', 'uc'], 'unicode (un)escape', - function (arg, bang) - copyAndEcho((bang ? unescape : escape)(arg.string)), + function (arg) + copyAndEcho((arg.bang ? unescape : escape)(arg.string)), {argCount: '*', bang: true}, true ); |