Artifact 27da7709e0b711d4c23d6042975d8d832e4ae308c8f21d3b5049220786cdb796:
- File
psl-1983/3-1/nmode/set-terminal-20.sl
— 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: 1459) [annotate] [blame] [check-ins using] [more...]
- File
psl-1983/nmode/set-terminal-20.sl
— 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: 1459) [annotate] [blame] [check-ins using]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Set-Terminal-20.SL (Tops-20 Version) % % Author: Alan Snyder % Hewlett-Packard/CRC % Date: 1 November 1982 % % This file contains functions that set NMODE's terminal. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (BothTimes (load objects)) % External variables used here: (fluid '(nmode-terminal)) % Global variables defined here: (fluid '(terminal-type)) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Terminal Selection Functions: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% (de nmode-default-terminal () (nmode-set-terminal) ) (de nmode-set-terminal () (setf terminal-type (jsys2 65 0 0 0 (const jsgttyp))) (selectq terminal-type (21 % HP2621 (ensure-terminal-type 'hp2648a) ) (6 % HP264X (ensure-terminal-type 'hp2648a) ) (15 % VT52 (ensure-terminal-type 'vt52x) ) (t (or nmode-terminal (ensure-terminal-type 'hp2648a)) ) )) (de ensure-terminal-type (type) (cond ((or (null nmode-terminal) (not (eq type (object-type nmode-terminal)))) (setf nmode-terminal (make-instance type)) (nmode-new-terminal) ))) % These functions defined for compatibility: (de hp2648a () (ensure-terminal-type 'hp2648a)) (de vt52x () (ensure-terminal-type 'vt52x))