This file is indexed.

/usr/lib/gambc4/r5rs#.scm is in libgambc4 4.2.8-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
22
23
24
25
26
27
28
29
30
31
32
33
;;;============================================================================

;;; File: "r5rs#.scm", Time-stamp: <2007-04-04 11:32:06 feeley>

;;; Copyright (c) 2005-2007 by Marc Feeley, All Rights Reserved.

;;;============================================================================

;; Identifiers bound to syntactic forms and procedures defined by R5RS
;; are mapped to the empty namespace (no prefix).

(##include "~~/lib/r4rs#.scm") ;; most identifier bindings are inherited from R4RS

(##namespace ("" ;; these identifier bindings are new in R5RS

;; special forms
define-syntax
let-syntax
letrec-syntax
syntax-rules

;; procedures
call-with-values
dynamic-wind
eval
interaction-environment
null-environment
scheme-report-environment
values

))

;;;============================================================================