This file is indexed.

/usr/share/jed/lib/dos437.sl is in jed-common 1:0.99.19-3.

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
#ifdef IBMPC_SYSTEM
%  Initializes upper/lowercase lookup tables for DOS code page 437.
%  437 is the original DOS character table. So if your DOS version
%  does not support code pages, use this table. 437 is also the 
%  default code page for USA, United Kingdom, and International English.
%  It is the alternate code page for Belgium, Brazil, Finland, France,
%  Germany, Italy, Latin America, Netherlands, Spain, Sweden, and 
%  Switzerland. 
%  Information from MSDOS 5.0 manual
%
.   0  64 1 { dup define_case } _for
.  65  90 1 { dup 32 + define_case } _for
.  91  96 1 { dup define_case } _for
. 123 255 1 { dup define_case } _for
. 128 135 define_case
. 142 132 define_case
. 143 134 define_case
. 144 130 define_case
. 146 145 define_case
. 153 148 define_case
. 154 129 define_case
. 165 164 define_case
%
% Now define a word.  This IS NOT based on above
%
. "0-9a-zA-Z\d128-\d167\d224-\d235" define_word
% Marko thinks:
. "0-9a-zA-Z\d128-\d154\d160-\d165\d224-\d235" define_word

#endif