1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 13:48:00 +01:00

allow number options to be set with octal and hex values

This commit is contained in:
Doug Kearns
2007-11-07 03:08:29 +00:00
parent 4c0cf136cf
commit 285d4c3173

View File

@@ -1753,7 +1753,7 @@ vimperator.Commands = function() //{{{
break;
case "number":
value = parseInt(value, 10);
value = parseInt(value);
if (isNaN(value))
{