/usr/share/hol88-2.02.19940316/contrib/hol-emacs/init.ml is in hol88-contrib-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 | %----------------------------------------------------------------
File: init.ml
Author: PJWindley (UCDavis)
Purpose: initialize HOL88 for running under emacs.
----------------------------------------------------------------%
%----------------------------------------------------------------
Since this file is only called if I'm running HOL from within
Emacs, I want to turn my prompt off.
----------------------------------------------------------------%
set_flag (`prompt`,false);;
%----------------------------------------------------------------
Search the system directories first. Note that the trailing '/'
has to be on each path component for this to work.
----------------------------------------------------------------%
set_search_path (search_path() @ [`~windley/hwv/hol/tactics/`;
`~windley/hwv/hol/ml/`;
]);;
|