This file is indexed.

/usr/share/common-lisp/source/chipz/package.lisp is in cl-chipz 20130128-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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(defpackage :chipz
  (:use :cl)
  (:export #:decompression-state
           #:inflate-state
           #:bzip2-state

           #:make-dstate
           #:finish-dstate

           ;; Only for API compatibility
           #:make-inflate-state
           #:finish-inflate-state

           ;; Main user-visible entry point
           #:decompress

           ;; Symbols for EQL specializers
           #:deflate
           #:zlib
           #:gzip
           #:bzip2

           ;; Gray streams
           #:make-decompressing-stream

           ;; conditions

           #:chipz-error
           #:invalid-format-error
           #:decompression-error
           #:invalid-checksum-error
           #:premature-end-of-stream
           #:inflate-error
           #:invalid-zlib-header-error
           #:invalid-gzip-header-error
           #:reserved-block-type-error
           #:invalid-stored-block-length-error
           #:bzip2-error
           #:invalid-bzip2-data))