This file is indexed.

/usr/share/vile/perl/Visit.pm is in vile-common 9.8g-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package Visit;
require 5.000;
require Exporter;
use Carp;

@ISA = qw(Exporter);
@EXPORT = qw(visit);

sub visit {
    my ($fname, @dot) = @_;

    croak "visit: No filename!"		if !defined($fname);

    my $visbuf = Vile::Buffer->edit($fname);

    $visbuf->dot(@dot)			if (@dot == 1) || (@dot == 2);

    Vile->current_buffer($visbuf);

    1;
}

1;