This file is indexed.

/usr/lib/clisp-2.49/install-clc.lisp is in clisp 1:2.49-8.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
;;;; -*- Mode: Lisp; Package: CL-USER -*-
;;;; Copyright (c) 2004 Kevin M. Rosenberg
;;;; GNU GPL v2 license

(in-package #:cl-user)

(handler-case
    (load "/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller.lisp")
  (error (e)
    (format t "Error during loading of common-lisp-controller.lisp: ~A~%" e)
    (error e)))

(handler-case
    (common-lisp-controller:init-common-lisp-controller-v4 "clisp")
  (error (e)
    (format t "Error during init-common-lisp-controller-v4: ~A~%" e)
    (error e)))