This file is indexed.

/usr/share/doc/pmw/contrib/SplitArrow is in pmw-doc 1:4.27-1.

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
@ These are some drawing functions contributed by Richard Hallas. They draw
@ end-of-line splitting arrows which are different in style to the ones in
@ the PMS font.

Draw SplitUp
  @ Diagonal splitting arrow to be used at the end of a system
  @
  0 8 moveto
  8 8 rlineto               @ draw diagonal
  -4 0 rmoveto
  4 0 rlineto 0 -4 rlineto  @ draw arrowhead
  0.5 setlinewidth stroke
Enddraw

Draw SplitDown
  @ Diagonal splitting arrow to be used at the end of a system
  @
  0 8 moveto
  8 -8 rlineto             @ draw diagonal
  -4 0 rmoveto
  4 0 rlineto 0 4 rlineto  @ draw arrowhead
  0.5 setlinewidth stroke
Enddraw