class IRB::EvalHistory

def size(size) # :nodoc:

:nodoc:
def size(size) # :nodoc:
  if size != 0 && size < @size
    @contents = @contents[@size - size .. @size]
  end
  @size = size
end