This file is indexed.

/usr/share/slsh/local-packages/xfig.sl is in slang-xfig 0.2.0~.117-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
24
25
26
$1 = 0; $2 = 2; $3 = 0;
variable _xfig_version = $1*10000 + $2*100 + $3;
variable _xfig_version_string = "pre$1.$2.$3-117"$;

()=evalfile ("xfig/core");
()=evalfile ("xfig/polyline");
()=evalfile ("xfig/ellipse");
%()=evalfile ("xfig/text");  % obsolete-- replaced by latex.sl
()=evalfile ("xfig/png.sl");
()=evalfile ("xfig/latex.sl");
()=evalfile ("xfig/objects");
()=evalfile ("xfig/clip.sl");
()=evalfile ("xfig/plot.sl");
$1 = getenv ("HOME");
if ($1 != NULL)
{
   $1 = path_concat ($1, ".slxfigrc");
   if (NULL != stat_file ($1))
     {
	() = evalfile ($1);
     }
}

$1 = path_concat (path_concat (path_dirname (__FILE__), "help"), "slxfig.hlp");
if (NULL != stat_file ($1))
  add_doc_file ($1);