This file is indexed.

/usr/share/gnudatalanguage/lib/idl_container__define.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__Define
;
; PURPOSE:
;    define a compatible idl_container by inheriting from the GDL_CONTAINER
; :Categories:
;    Object Programming, Graphics
;
;
;   This is the class definition module. 
;
;---------------------------------------------------------------------------
PRO IDL_CONTAINER__Define, class

   Compile_Opt hidden
   class = { IDL_CONTAINER, $
              INHERITS GDL_CONTAINER $
           }

END