This file is indexed.

/usr/share/emacs/site-lisp/elpa-src/slime-2.20/contrib/slime-fancy-inspector.el is in slime 2:2.20+dfsg-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
40
41
42
(eval-and-compile
  (require 'slime))

(define-slime-contrib slime-fancy-inspector
  "Fancy inspector for CLOS objects."
  (:authors "Marco Baringer <mb@bese.it> and others")
  (:license "GPL")
  (:slime-dependencies slime-parse)
  (:swank-dependencies swank-fancy-inspector)
  (:on-load
   (add-hook 'slime-edit-definition-hooks 'slime-edit-inspector-part))
  (:on-unload
   (remove-hook 'slime-edit-definition-hooks 'slime-edit-inspector-part)))

(defun slime-inspect-definition ()
  "Inspect definition at point"
  (interactive)
  (slime-inspect (slime-definition-at-point)))

(defun slime-disassemble-definition ()
  "Disassemble definition at point"
  (interactive)
  (slime-eval-describe `(swank:disassemble-form
                         ,(slime-definition-at-point t))))

(defun slime-edit-inspector-part (name &optional where)
  (and (eq major-mode 'slime-inspector-mode)
       (cl-destructuring-bind (&optional property value)
           (slime-inspector-property-at-point)
         (when (eq property 'slime-part-number)
           (let ((location (slime-eval `(swank:find-definition-for-thing
                                         (swank:inspector-nth-part ,value))))
                 (name (format "Inspector part %s" value)))
             (when (and (consp location)
                        (not (eq (car location) :error)))
               (slime-edit-definition-cont
                (list (make-slime-xref :dspec `(,name)
                                       :location location))
                name
                where)))))))

(provide 'slime-fancy-inspector)