This file is indexed.

/usr/lib/s9fes/help/keyword-value is in scheme9 2010.11.13-2.

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
S9 LIB  (accept-keywords string list1 list2)  ==>  #t | undefined
        (keyword-value list symbol)           ==>  object | undefined
        (keyword-value list symbol object)    ==>  object

KEYWORD-VALUE finds the value associated with a keyword in a property
list (keywords in even positions, values in odd positions). When the
keyword is not found in the plist and a default OBJECT is specified,
that object is returned. When the keyword is not found and no default
is given, an error is signalled.

ACCEPT-KEYWORDS checks each keyword in LIST1 against symbols listed
in LIST2. When LIST1 contains a keyword not contained in LIST2, it
signals an error. It also signals an error when LIST1 contains a
trailing keyword (without an associated value).
When reporting an error ACCEPT-KEYWORD will insert the given STRING
as the source of the error.

(keyword-value '(foo 1 bar 2) 'bar)  ==>  2
(keyword-value '(foo 1) 'bar 0)      ==>  0

(accept-keywords "test" '(foo 1 bar 2) '(foo bar))  ==>  #t