commit 34836b81834c5ce7128e8c9e81c3e86409afb00b parent d0df936c88044fc3925812da5f5e2b0731cbffbc Author: Grant Hollingworth <grant@antiflux.org> Date: Mon, 28 Apr 2008 11:26:16 -0400 parenthesized argument to quell warning Diffstat:
| M | lib/sup/keymap.rb | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/keymap.rb b/lib/sup/keymap.rb
@@ -46,7 +46,7 @@ class Keymap
when :tab: "tab"
when " ": "<space>"
else
- Curses::keyname(keysym_to_keycode k)
+ Curses::keyname(keysym_to_keycode(k))
end
end