Google

# File ../lib/fox/undolist.rb, line 173
    def redo
      if !@redolist.empty?
        command = @redolist.pop
        command.redo
        @undolist.push(command)
        @size += command.size
        @marker = @marker + 1 if (@marker != nil)
        return true
      end
      return false
    end