Artifact 40d73b7baf84abff7a8e121e9791cecd04bca51b209e9a46b2a0586c444bb7dc:
- File
psl-1983/3-1/kernel/io-errors.red
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 897) [annotate] [blame] [check-ins using] [more...]
- File
psl-1983/kernel/io-errors.red
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 897) [annotate] [blame] [check-ins using]
% % IO-ERRORS.RED - Error handlers for input and output % % Author: Eric Benson % Symbolic Computation Group % Computer Science Dept. % University of Utah % Date: 27 August 1981 % Copyright (c) 1981 University of Utah % on SysLisp; syslsp procedure ChannelNotOpen(Chn, Ch); ChannelError(Chn, "Channel not open"); syslsp procedure WriteOnlyChannel Chn; ChannelError(Chn, "Channel open for write only"); syslsp procedure ReadOnlyChannel(Chn, Ch); ChannelError(Chn, "Channel open for read only"); syslsp procedure IllegalStandardChannelClose Chn; ChannelError(Chn, "Illegal to close standard channel"); syslsp procedure IOError(Message); StdError BldMsg("I/O Error: %s", Message); syslsp procedure ChannelError(Channel, Message); StdError BldMsg("I/O Error on channel %d: %s", IntInf Channel, Message); off SysLisp; END;