This file is indexed.

/usr/share/hol88-2.02.19940316/Library/latex-hol/latex-hol.ml is in hol88-library-source 2.02.19940316-19.

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
34
35
36
37
% latex-hol.ml by Wai Wong 15 May 1990					%
% for loading the library latex-hol 					%

% --------------------------------------------------------------------- %
% Put the pathname to the library sets onto the search path.		%
% --------------------------------------------------------------------- %

let path = library_pathname() ^ `/latex-hol/` in
    print_string `Updating search path`; print_newline();
    set_search_path (union (search_path()) [path]);;

% --------------------------------------------------------------------- %
% Add the help files to online help.					%
% --------------------------------------------------------------------- %

let path = library_pathname() ^ `/latex-hol/help/entries/` in
    print_newline();
    print_string `Updating help search path`; print_newline();
    set_help_search_path (union [path] (help_search_path()));;

% --------------------------------------------------------------------- %
% Loading the prettyp library	    					%
% --------------------------------------------------------------------- %

load_library `prettyp:PP_printer`;;

    map (\st. loadf(st))
        [`filters`;
    	 `hol_trees`;
         `precedence`;
         `latex_type_pp`;
         `latex_term_pp`;
         `latex_thm_pp`;
    	 `latex_sets_pp`;
    	 `formaters`];;

%-----------------------------------------------------------------------------%