/usr/share/hol88-2.02.19940316/Library/window/xlabel.ml is in hol88-library-source 2.02.19940316-31.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | % --------------------------------------------------------------------- %
% Copyright (c) Jim Grundy 1992 %
% All rights reserved %
% %
% Jim Grundy, hereafter referred to as `the Author', retains the %
% copyright and all other legal rights to the Software contained in %
% this file, hereafter referred to as `the Software'. %
% %
% The Software is made available free of charge on an `as is' basis. %
% No guarantee, either express or implied, of maintenance, reliability, %
% merchantability or suitability for any purpose is made by the Author. %
% %
% The user is granted the right to make personal or internal use %
% of the Software provided that both: %
% 1. The Software is not used for commercial gain. %
% 2. The user shall not hold the Author liable for any consequences %
% arising from use of the Software. %
% %
% The user is granted the right to further distribute the Software %
% provided that both: %
% 1. The Software and this statement of rights is not modified. %
% 2. The Software does not form part or the whole of a system %
% distributed for commercial gain. %
% %
% The user is granted the right to modify the Software for personal or %
% internal use provided that all of the following conditions are %
% observed: %
% 1. The user does not distribute the modified software. %
% 2. The modified software is not used for commercial gain. %
% 3. The Author retains all rights to the modified software. %
% %
% Anyone seeking a licence to use this software for commercial purposes %
% is invited to contact the Author. %
% --------------------------------------------------------------------- %
%============================================================================%
% CONTENTS: interactive front end to the window infernce library. %
%============================================================================%
%$Id: xlabel.ml,v 3.1 1993/12/07 14:15:19 jg Exp $%
ptrtype `strptr` `string`;;
begin_section xsec;;
let set_title s =
tty_write ((ascii(27))^`]2;`^s^ascii(7));;
let label = new_strptr ();;
let xset_stack name =
store label name;
set_title (`CURRENT_STACK: `^name);;
let xbeg_stack = xset_stack;;
let xend_stack name =
if (not (is_nil label)) & ((value label) = name) then
(
dispose label;
set_title `NO CURRENT STACK`
);;
if can CURRENT_NAME () then
xset_stack (CURRENT_NAME ());;
handle beg_stack_sig xbeg_stack;;
handle end_stack_sig xend_stack;;
handle set_stack_sig xset_stack;;
end_section xsec;;
|