Trailing-Edge
-
PDP-10 Archives
-
BB-5135E-BM
-
apl-basic/doc/apl.doc
There is 1 other file named apl.doc in the archive. Click here to see a list.
APL.DOC -- Changes from V1C(315) to V2(435)
September 1979
COPYRIGHT (C) 1976,1979 BY
DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS.
THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED
ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE
INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER
COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY
OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY
TRANSFERRED.
THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE
AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT
CORPORATION.
DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS
SOFTWARE ON EQUIPMENT WHICH IS NOT SUPPLIED BY DIGITAL.
APL.DOC Page 2
APL.DOC -- Changes from V1C(315) to V2(435)
September 1979
1.0 SUMMARY
APL is the basic implementation on the DECSYSTEM-20 of the APL
language with shared system functions and system variables. It runs
on a KL-20 processor under release 3A or later of the TOPS-20 monitor.
It requires the compatibility package, PA1050, during execution, and
is documented in the APLSF Programmer's Reference Manual
(DEC-20-LASFA-A-D). Version 2 is documented in the TOPS-10/20 APLSF
Language Manual (AA-H200A-TK).
Version 2 runs under release 3A or later of the TOPS-20 monitor. It
has been tested in-house under 3A and 4.
The reason for this release is to correct outstanding bugs in APL
Version 1C and to incorporate several functional enhancements as
described below.
APL Version 2 fully supersedes Version 1C and includes edits #316 to
#435.
APL.DOC Page 3
2.0 EXTERNAL CHANGES
1. The current setting of )MAXCOR is now saved across a )CALL,
so it is possible to return from a )CALL even if )MAXCOR had
been expanded in the workspace before the )CALL.
2. There are now TTY mnemonics for diamond (.DM), left bracket
(.LB), left tack (.LK), right bracket (.RB), and right tack
(.RK).
3. Nonprinting elements of the atomic vector (.BXAV) are now
displayed as squish quad (.SQ). Note that this is not a
valid character and cannot be typed to APL.
4. When doing APL output to an ASCII sequential file while in
TTY mode, the default terminal type is now LA36 instead of
2741 (which is not supported by TOPS-20).
5. Error numbers are now catenated to the front of error
messages. Also, the error line printed when an error occurs
occasionally has fewer added spaces and the caret position is
sometimes one position to the right of where it used to be.
6. LIB: now refers to whatever the user has logical name LIB:
defined to be, instead of the APL system library. LIBn:
still refers to the system library.
7. The omega function (.OM) has been removed from the version 2
manual. Omega still works in version 2 but will not be
supported after version 2. The .OM symbol has other proposed
uses in the APL language and the optimizing effect of .OM
will be implememted for reduce-iota-rho.
8. The definitions of I-beams (.IB) have been moved to an
appendix of the version 2 manual. They are still supported
in version 2 and most will still be supported in later
versions for compatibility with other vendors. However, we
strongly recommend that system variables and functions be
used instead of I-beams.
9. Quote-quad (.QQ) or quad-del (.QD) input following .QQ or .QD
output precedes the input string with a string of blanks
equal in length to the preceding output. If such preceding
output was longer than 390 characters (the maximum input
length), a LINE TOO LONG error occurs and correct input is
awaited.
10. For niladic function F which returns no value, the
expressions "1;F", "1+F" and "F+1" give value errors since a
value is needed by the primitive function but F did not
return one. The expression "F;1" returns 1 to be consistent
with the expression "F", which executes F but prints nothing.
Note that the ";" function is a monadic output catenator,
operating on the expression to its right. ";" is not
APL.DOC Page 4
intended to be a statement separator.
11. On the -20, GENBAS can now set the device for the library
area and the )HI file as well as the directory. The default
is now PS: instead of DSK: so APL will be able to find
these areas even if you are not connected to PS:. You must
be connected to the device specified for these areas when
running GENBAS in order for the generation procedure to be
successful.
2.1 Functional Changes
1. .BXMTP has been modified to simulate some of the TAPOPs not
in PA1050. It still has problems if the file has not been
opened. Specifically, density and mode cannot be set from
inside APL before the file is opened. Use the SET TAPE Exec
command to set these tape parameters.
2.2 Functional Additions
2.2.1 Error Trapping - The following system variables and functions
have been added to allow program handling of error conditions and
other events.
1. .BXBREAK - This is a monadic function which causes execution
to terminate, suspending the current function and entering
immediate mode. It prints its argument before breaking to
the terminal.
2. .BXERROR - This is a variable which is set by APL to the
error message for the last error. (It contains the text
which is normally printed on the terminal.)
2.2.2 Limiting Input Wait - The following two variables allow a
program to limit the amount of time a user is given to respond to
quote-quad or quad-del input.
1. .BXTIMELIMIT - The number of milliseconds to wait for user
input. If 0, then no limit. If -1, no waiting is done (only
characters which were typed ahead are read).
2. .BXTIMEOUT - Flag indicating whether or not user timed out on
last input. (This flag is also used with PTYs to indicate
whether or not last input was terminated with a LF).
APL.DOC Page 5
2.2.3 New Character Arrays - The following system variables are
useful subsets of .BXAV.
1. .BXALPHA - The 27 letters, .LD-Z.
2. .BXALPHAU - The 27 underscored letters, [email protected].
3. .BXASCII - The 128 ASCII codes. These codes are sent to
files as is, regardless of the terminal type. They are
useful when doing graphics.
4. .BXCTRL - The 32 control characters, octal 0-37.
5. .BXNUM - The 10 digits, 0-9.
APL.DOC Page 6
3.0 KNOWN BUGS AND DEFICIENCIES
3.1 Deficiencies And Restrictions
The known deficiencies and restrictions in APL are:
1. The caret symbol indicating where an error in an APL
statement was first detected is sometimes displayed in the
wrong position. With the introduction of error trapping and
.BXERROR, it is desirable to fix this. We will attempt to do
so in the future. With this in mind, we recommend that users
do not write programs which depend on the current positioning
of the caret.
2. It is not possible to display the trace or stop vector of a
function. This is a restriction which will not be removed in
the foreseeable future.
3. It is impossible to enter an invalid TTY mnemonic in a
character string when using a TTY terminal, just as it is
impossible to enter an illegal overstrike from an APL
terminal. This is a permanent restriction.
3.2 Outstanding Bugs
The known outstanding bugs in APL are:
1. Erasing a pendent or a suspended function can cause a SYSTEM
ERROR, depending on the state of the function when erased.
2. The compression of a zero-by-n matrix returns a length error
when the left argument is an n-element vector, but works if
it is a scalar.
3. A niladic branch inside a multistatement line will fail with
a SYNTAX ERROR.
4. Linefeeds typed during linefeed editing may appear as
carriage return linefeed pairs. This is a temporary
restriction which will be corrected in version 4 of the
compatibility package. A patch to PA1050 which solves this
problem is included in the beware file on this tape
(APL.BWR).
5. The )LIB command updates the access dates of the listed
files. In particular, )LIB/A updates the access dates to the
current date before printing them. This is a problem with
the compatibility package.
APL.DOC Page 7
4.0 INSTALLATION INSTRUCTIONS
4.1 Files Included on This Tape
There are three savesets on this tape: DOCUMENTATION, BINARIES and
REL LIBRARIES.
The contents of DOCUMENTATION are:
APL.DOC This documentation file.
APL.BWR The beware file, containing DDT patches.
APL.HLP The HELP message to respond to the monitor HELP
command.
APLSF.RNH The RUNOFF input for the HELP file.
APLSF.RND The RUNOFF input for the .DOC file.
The contents of BINARIES are:
APL.EXE The APL executable file.
GENBAS.EXE Generation program for APL. See below for its use.
The contents of REL LIBRARIES are:
APLB22.REL REL Library for APL-BASIC-20 v2.
APLB22.LNK LINK indirect file for APL-BASIC-20 v2.
APLH22.REL REL Library for GENBAS-20 v2.
APLH22.LNK LINK indirect file for GENBAS-20 v2.
The following file is not distributed. It is generated by APL.
APLHSF.APL The APL HI file, if a HI message is desired.
The default is to put all files on the subsystem area PS:<SUBSYS>, and
to make the APL library area be PS:<SUBSYS>. There is no need to put
the files from the REL LIBRARIES saveset on disk.
4.2 Changing the Default Installation Parameters
The default installation parameters are as follows:
The installation name is DECSYSTEM-20 APL-BASIC.
The automatic save facility, .BXAUS, is off.
The structure used for the HI file and the library is PS:.
The directory used for the HI file and the library is <SUBSYS>.
The default value of )MAXCOR (and thus the default maximum
APL.DOC Page 8
workspace size) is 40P.
If a change in the parameters is desired, put the .EXE file on device
DSK:, run GENBAS.EXE and answer the questions. The program updates
the .EXE file. Then rename and distribute the different files to the
appropriate disk structures and directories.
4.3 Creating a HI Message
If you wish a HI message, login as the operator, sign on APL, and
execute the command
)HI 'THIS IS MY HI MESSAGE'
Then sign off APL. This generates APLHSF.APL on the structure and the
directory specified for the )HI file by GENBAS.
The )HI message is truncated to 239 characters. The error message "WS
NOT FOUND" means that the )HI file directory specified by GENBAS does
not exist.
APL.DOC Page 9
5.0 INTERNAL CHANGES
5.1 Edits
EDIT # SPR REMARKS
316 27504 Fix CRLF idle-character handling: use correct
idle character for TTYs and reset the idle
character control count properly.
317 27492 Fix input routine for integers of magnitude
greater than 2^27-1.
320 12872 Prevent function line editor from accepting
negative line numbers (with random results).
321 Dev Implement .BXRENAME.
322 Dev Implement .BXAPPEND and /AS* file type.
323 Dev Implement .SQ for all nonprinting characters in
.BXAV.
324 Dev Implement .BXASCII.
325 ----- Modify .BXMTP to simulate some of the TAPOPs not
in PA1050. (-20 only)
326 ----- Correctly handle nonalphanumeric SIXBIT characters
in user-specified installation name.
327 12947 Check allocated space on codestring creation to
avoid overwriting data.
330 ----- Change default PPN to be user's PPN if PPN of
current workspace is [0,0].
331 ----- Change default APL output type for TTYs from 2741
to LA36.
332 Dev Implement .BXTIMELIMIT and .BXTIMEOUT.
333 ----- Have TTY mode input from ASCII sequential files
convert lower to upper case.
334 ----- Internal edit.
335 ----- Internal edit to circumvent TOPS-20 bug. (-20
only)
336 ----- Withdrawn.
337 ----- Correctly print nonalphanumeric SIXBIT characters
in user name.
APL.DOC Page 10
340 ----- Internal edit.
341 Dev Implement .BXERROR.
342 ----- Fix LIB: definitions on -20. (LIB: belongs to
user, LIBn: belongs to APL) (-20 only)
343 Dev Implement .BXBREAK.
344 ----- Add TTY mnemonics for diamond (.DM), left bracket
(.LB), left tack (.LK), right bracket (.RB), right
tack (.RK).
345 ----- Internal edit.
346 Dev Don't set .BXERROR on EOF.
347 Dev Append .XQ execute error message to previous
.BXERROR.
350 Dev Implement .BXTRAP.
351 ----- For LA36, shift out after MONITOR: message
instead of before.
352 Dev Implement .BXSIGNAL.
353 ----- When doing )SI, have .XQs show up as .XQ instead
of .EP.
354 Dev Make .BXBREAK work inside .XQ.
355 ----- Internal edit.
356 ----- Fix shadowing of .BXERROR.
357 ----- Internal edit.
360 Dev Allow .BXBREAK in APL-BASIC.
361 ----- Fix SIXBIT to NINEBIT of nonalphanumerics.
362 ----- .BXFLS, .BXENQ and .BXDEQ were returning invalid
error numbers on TOPS20.
363 ----- Make .BXBREAK clear )SI when done from protected
function.
364 Q00429 Prevent loop or system error when generating error
during subscripted catenate.
365 Q00377 Put setting of )MAXCOR into TMPCOR so it is
possible to return from a )CALL even if )MAXCOR
has been expanded.
APL.DOC Page 11
366 ----- Correctly save terminal type across )CALL.
367 ----- Internal edit.
370 ----- Correctly restore localized system variables when
)LOADing or )COPYing a workspace saved with a
different version of APL.
371 Q00448 If .BXPW is set to a width less than )TABS, reset
)TABS to new width (as is done with )WIDTH).
372 ----- Prevent workspace damage from occurring when
setting .BXTRAP to a system command.
373 ----- Allow .BXSIGNAL and .BXBREAK in immediate mode.
374 ----- Introduce the idea of system variables which can
be set by the system but not the user (needed for
.BXTIMEOUT and .BXERROR).
375 Q03193 Fix .BXRENAME on channels 2 and 5.
376 Q00431 Fix real to integer conversion of negative
numbers.
377 Dev Implement /BS* (sequential append for binary
files).
400 Dev Allow recursive error trapping. Prevent it only
with errors which occur in the .BXTRAP line
itself, not in any functions which are called.
401 ----- Internal edit.
402 ----- Remove 1030, ONTEL and TYCOM terminal types from
HELP message. They are still supported, but are
not documented.
403 ----- Fix printing of error line when error occurred at
end of execute string.
404 ----- Take CRLF out from before ATTENTION SIGNALED error
message so error number appears on the same line
as message.
405 ----- Internal edit.
406 ----- Fix problem with printing real matrices (e.g. 2
2.RO.FL/.IO0).
407 ----- Make .BXGAG work on TOPS20.
410 ----- Have .NT print @T in escape, and turn on
.LK,.DM,.LB,.RB,.RK output mnemonics.
APL.DOC Page 12
411 ----- Add local version numbers.
412 ----- Make product version number available to GENSF and
keep MAKILB from loosing it.
413 ----- Allow inner products with right function = and .NE
to compare alpha's with numerics (i.e. 'ABC'.=1 0
1)
414 QAR561 Fix edit 370 to set ASVSYMTAB on )CLEAR and to
RELWS WS with version = 0.
415 QA3420 Fix edit 367 to contract core on )LOAD: problem
only occurs on the -10 when loading smaller WS
after larger.
416 QA3266 Give LINE TOO LONG error if INBUF would overflow
when putting in leading blanks on .QQ or .QD input
following .QQ or .QD output.
417 QAR560 Prevent INCHAR from discarding any character
except a linefeed following a carriage-return.
420 ----- When the quad-error data entry gets allocated
after a partially-built data entry that gtcore()
was trying to get core for when a wsfull occured,
move the quad-error data entry above the partially
built data entry and update globals as necessary
prevent the workspace from being trashed.
421 Q00546 Correct function-line wraparound during output of
a numeric vector (broken during implementation of
.BXERROR).
422 ----- Prevent system errors during evaluation of the
expression F+1) where F is a niladic function that
does not return a value.
423 Q00511 Correct two more problems with function-line
wrap-around.
424 ----- Make DGETSCI accept double precision -1
(=533400,,0 0,,0) as integer -1.
425 Q00518 Make .BXTIMELIMIT set < -1 a DOMAIN ERROR.
426 QAR547 Fix dyadic .BXSIGNAL to correctly ignore left arg
if right arg is system error number.
427 ----- Be able to load release 4 UDDT, which has pages
below 770.
430 QAR612 Change the wording in GENSF (XLIMCOR) to ask for
the default setting of )MAXCOR, not an upper bound
on memory.
APL.DOC Page 13
431 QAR613 Allow -20 to specify LIBn: structure (default is
PS:).
432 ----- Fix the dqren() interface to cmdsyn() to prevent
wsid-filename default, accidentally deleted files,
lost default file extension, and infinite loops.
433 QAR564 INLINE loops when .bxTIMEOUT = 1 on PTY because
FILINP didn't reset TIMOUT (DEVTYP UUO is CALLI 53
octal not decimal).
434 ----- Create PATCH.REL to define PATCH: area to be used
instead of PAT.. (which could get wiped out by an
exapanding WS).
435 QA3587 Fix typos in FS on -10 in /BS*. Make STRTIO leave
BLKNUM and INDEX = 0 so WRTSETUP will do read of
last block which write goes into on append.
APL.DOC Page 14
6.0 SUGGESTIONS
6.1 Continuing a detached APL job
In the event of a line drop or system crash, a user's job may become
detached. After reestablishing a connection with the system, the user
should check to see if his/her job is still there. If so, the user
should reattach to the job using the ATTACH command. Then, to restore
the job to its previous state, the user should type CONTINUE. If the
user instead types APL, a new version of APL will be loaded and the
job's previous core image will be destroyed, along with the user's
workspace.
[End of APL.DOC]