This file is indexed.

/usr/share/gnudatalanguage/lib/idl_object.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
;+
;
; NAME:
;   IDL_OBJECT
;
; PURPOSE:
;    create an 'IDL_OBJECT' object 
;
; :Categories:
;    Object Programming, Graphics
;
; this provides the procedure interface to creating an IDL_OBJECT.
;
; IDL_OBJECT is a built-in reference to GDL_OBJECT
;
;---------------------------------------------------------------------------
Function IDL_OBJECT

   Compile_Opt hidden
   return, obj_new('idl_object')
END