This file is indexed.

/usr/share/emacs/site-lisp/elpa-src/slime-2.20/contrib/slime-indentation.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
(require 'slime)
(require 'slime-cl-indent)
(require 'cl-lib)

(define-slime-contrib slime-indentation
  "Contrib interfacing `slime-cl-indent' and SLIME."
  (:swank-dependencies swank-indentation)
  (:on-load
   (setq common-lisp-current-package-function 'slime-current-package)))

(defun slime-update-system-indentation (symbol indent packages)
  (let ((list (gethash symbol common-lisp-system-indentation))
        (ok nil))
    (if (not list)
        (puthash symbol (list (cons indent packages))
                 common-lisp-system-indentation)
      (dolist (spec list)
        (cond ((equal (car spec) indent)
               (dolist (p packages)
                 (unless (member p (cdr spec))
                   (push p (cdr spec))))
               (setf ok t))
              (t
               (setf (cdr spec)
                     (cl-set-difference (cdr spec) packages :test 'equal)))))
      (unless ok
        (puthash symbol (cons (cons indent packages)
                              list)
                 common-lisp-system-indentation)))))

(provide 'slime-indentation)