This file is indexed.

/usr/share/graphviz/lefty/def.lefty is in graphviz 2.36.0-0ubuntu3.

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
definit = function () {
    defview = createwidget (-1, [
        'type' = 'view';
        'name' = 'graphics view';
        'origin' = ['x' = 1; 'y' = 1;];
        'size' = ['x' = 400; 'y' = 500;];
    ]);
    defscroll = createwidget (defview, ['type' = 'scroll';]);
    defcanvas = createwidget (defscroll, [
        'type' = 'canvas';
        'origin' = ['x' = 1; 'y' = 1;];
        'size' = ['x' = 400; 'y' = 500;];
        'borderwidth' = 1;
    ]);
};