This file is indexed.

/usr/share/maxima/5.32.1/src/sloop.lisp is in maxima-src 5.32.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
(in-package :cl-sloop)
(defmacro sloop (&rest body)
  (warn (intl:gettext "Using deprecated macro 'sloop'. Use 'loop' instead."))
  `(loop ,@body))