diff options
| author | Stephen Blott | 2016-03-29 16:50:55 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-29 16:50:55 +0100 | 
| commit | a332f0cc7139c9185fcea3e82c800915712b5491 (patch) | |
| tree | 1ac68391e8571992a062b00e86194a250f7c42e6 /content_scripts/mode_key_handler.coffee | |
| parent | 77a2c6b41959f978147bd953ac94f5484394b276 (diff) | |
| download | vimium-a332f0cc7139c9185fcea3e82c800915712b5491.tar.bz2 | |
Fix typo in debugging code.
Diffstat (limited to 'content_scripts/mode_key_handler.coffee')
| -rw-r--r-- | content_scripts/mode_key_handler.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/mode_key_handler.coffee b/content_scripts/mode_key_handler.coffee index b6f384ce..96792306 100644 --- a/content_scripts/mode_key_handler.coffee +++ b/content_scripts/mode_key_handler.coffee @@ -101,7 +101,7 @@ class KeyHandlerMode extends Mode      command = (mapping for mapping in @keyState when "command" of mapping)[0]      if command        count = if 0 < @countPrefix then @countPrefix else 1 -      bgLog "Call #{command.command}[#{count}] (#{@mode})" +      bgLog "Call #{command.command}[#{count}] (#{@name})"        @reset()        @commandHandler {command, count}      false # Suppress event.  | 
