This file is indexed.

/usr/share/common-lisp/source/xmls/xmls.asd is in cl-xmls 1.4.1-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
;;; -*- Lisp -*-
;;; $Id: xmls.asd 611 2011-02-23 21:14:47Z rpgoldman $

(defpackage #:xmls-system (:use #:cl #:asdf))
(in-package :xmls-system)

(defsystem :xmls
    :version "1.4.1"
    :depends-on
    #+xmls-debug (:norvig)
    #-xmls-debug ()
    :components ((:file "xmls")
                 (:file "xmlrep-helpers"
                        ;; package is defined in XMLS. [2009/02/24:rpg]
                        :depends-on ("xmls"))))

;;; These are additional standalone tests
(defsystem :xmls-test
  :version "1.4.1"
  :depends-on (xmls nst)
  :components ((:file "nst-tests")))