This file is indexed.

/usr/share/gnudatalanguage/lib/idl_container.pro is in libgnudatalanguage0 0.9.7-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
;+
;
; NAME:
;   IDL_CONTAINER
;
; PURPOSE:
;    create an IDL container 
;
; :Categories:
;    Object Programming, Graphics
;
; this provides the procedure interface to creating an IDL_container.
;
; idl_container__define.pro will further defines this to be fully inherited from 
; GDL_CONTAINER, which is a built-in object of GDL.
;
;---------------------------------------------------------------------------
Function IDL_CONTAINER

   Compile_Opt hidden
   return, obj_new('idl_container')
END