From mboxrd@z Thu Jan 1 00:00:00 1970 From: itaylor@uark.edu (Ian Taylor) Date: Mon, 03 Dec 2007 03:25:15 -0500 Subject: [sup-talk] Util - Fixnum num_digits is wrong Message-ID: <1196670157-sup-6857@silver> Probably wasn't causing any problems, but is wrong. =================================================================== --- lib/sup/util.rb (revision 737) +++ lib/sup/util.rb (working copy) @@ -299,7 +299,7 @@ class Fixnum def num_digits base=10 return 1 if self == 0 - 1 + (Math.log(self) / Math.log(10)).floor + 1 + (Math.log(self) / Math.log(base)).floor end def to_character -- Ian Taylor