news.txt 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. -*- Mode: Indented-text; -*-
  2. Recent changes to Scheme 48.
  3. 01/12/07 (version 1.5)
  4. Additions:
  5. Comprehensive Unicode support was added. See the manual for
  6. details.
  7. An implementation of SRFI 19 was added. (thanks to Emilio
  8. Lopes)
  9. SYNTAX-RULES now supports vector patterns and templates.
  10. The ,bound? command now produces more output. (thanks to
  11. Taylor Campbell)
  12. Changes:
  13. Many of the POSIX procedures that accepted or returned
  14. strings previously now accept or return OS strings. See
  15. the manual for details.
  16. The ,build command now accepts a procedure that will be
  17. called with a list of OS strings rather than regular
  18. strings.
  19. The ASCII->CHAR and CHAR->ASCII procedures from the ASCII
  20. structure covers only ASCII (codes 0-127) now.
  21. (Previously, the range included 128-255 as well.)
  22. Bug fixes:
  23. A bug with package mutation was fixed. (reported by Taylor
  24. Campbell)
  25. 12/23/06 (version 1.4)
  26. Additions:
  27. REGEXP? is now exported from the REXEXPS structure.
  28. SRFIs 4, 39, 40, 43, 43, 60, 61, 63, 66, 67, 71, 78
  29. (mostly thanks to David Van Horn)
  30. In the command processor, switches were generalized to
  31. settings, specifically to customize various printing
  32. parameters. See the manual for details.
  33. A generic byte-code parser was added to the system; the
  34. disassembler uses it.
  35. A REINITIALIZERS package for register actions to be
  36. performed after resuming an image was added.
  37. A VARIABLE-ARGUMENTS-LISTS structure implementing a macro
  38. for dealing with optional default parameters was added.
  39. A GET-INTERRUPT-HANDLER procedure was added.
  40. An --enable-universal-binary option was added to configure
  41. to facilitate building universal binaries on Mac OS X.
  42. The C code now has access to enum sets.
  43. Changes:
  44. FILE-OPTIONS (in the POSIX libary) are now enum sets; this
  45. allows using enum-set operations on them.
  46. Various changes were made to the VM to enable native-code
  47. compilation.
  48. Socket addresses are always reusable.
  49. 1+ and 1- are no longer valid identifiers.
  50. The ordering of in/out thunks of DYNAMIC-WIND was changed to
  51. be consistent with itself and with the upcoming R6RS.
  52. The Windows build is now done using Visual Studio 2005.
  53. Bug fixes:
  54. Macro-defining macros now work in PreScheme.
  55. Opening a file for both read and write via the POSIX
  56. libraries wouldn't work correctly. (Reported by Andreas
  57. Rottmann.)
  58. PreScheme's COPY-MEMORY! now works for overlapping regions.
  59. Various C compilation problems were fixed.
  60. cmuscheme48.el should now work under GNU Emacs as well as
  61. XEmacs.
  62. Numerous problems with floating-point arithmetic were fixed.
  63. A race condition with queues was fixed. (thanks to David
  64. Frese)
  65. Part of script messages were printed on stdout rather than
  66. stderr; fixed. (thanks to Andreas Rottmann)
  67. A shadowing bug in the DEBUGGING package was fixed. (thanks
  68. to Taylor Campbell)
  69. A bug in the CML SYNC-GROUP primitive was fixed. (thanks to
  70. Heath Putnam)
  71. Various errors in SRFI 13 were fixed.
  72. A bug in the auto-integrator was fixed. (thanks to Taylor
  73. Campbell)
  74. A bug in LOAD-DYNAMIC-EXTERNALS was fixed. (thanks to
  75. Taylor Campbell)
  76. Several bugs in VECTOR-MERGE were fixed. (reported by
  77. Matthias Radestock)
  78. The CML WRAP was made correctly tail-recursive. (reported
  79. by Heath Putnam)
  80. A bug in the PreScheme C backend, that would sometimes
  81. incorrectly delete tail calls without a return value, was
  82. fixed. (reported by Eric Merritt)
  83. Several bugs in interface walking were fixed. (reported by
  84. Taylor Campbell)
  85. A bug in the PreScheme compiler affecting the removal of
  86. unused procedures was fixed. (thanks to Eric Knauel)
  87. Some precedence bugs in the C stubgs for the regexp code
  88. were fixed. (thanks to Matthew Dempsky)
  89. A bug in the REGEXPS package for regexps without submatches
  90. was fixed.
  91. (set-current-proposal! (current-proposal)) no longer raises
  92. an exception. (thanks to Taylor Campbell)
  93. A bug in package caching was fixed. (thanks to Taylor
  94. Campbell)
  95. A bug in the generation of environment maps was fixed.
  96. (thanks to Taylor Campbell)
  97. The Windows installer package should now work even on
  98. systems that have delayed variable expansion on by default.
  99. (thanks to Emilio Lopes)
  100. Exception handlers that return from RAISE are now handled
  101. correctly. (reported by Norbert Freudemann)
  102. 05/01/05 (version 1.3)
  103. Additions:
  104. A collection of libraries implementing the Concurrent ML
  105. model for concurrent programming has been added; it is
  106. compatible to the CML libraries in Sunterlib. See the
  107. documentation for details.
  108. Support for SRFIs 34-36 ("Exception handling for programs",
  109. "Conditions", "I/O conditions") has been added. This is in
  110. the CONDITIONS, EXCEPTIONS, and I/O-CONDITIONS structures,
  111. for which the SRFI-34, SRFI-35, and SRFI-36 structures are
  112. essentially aliases. A bridging infrastructure between the
  113. old condition system and the new one translates condition
  114. objects back and forth, hopefully transparently for the
  115. user.
  116. A new infrastructure for dynamically loading external
  117. libraries from shared objects has been added; check the
  118. manual for details. The old infrastructure is still
  119. presented, but is unsupported on Windows and will be
  120. removed in a future release.
  121. The S48_GC_UNPROTECT_GLOBAL macro has been added, which
  122. allows to remove a root added by S48_GC_PROTECT_GLOBAL.
  123. The Scheme 48 header files should now be compileable by a
  124. C++ compiler.
  125. An experimental Windows port has been added.
  126. Changes:
  127. The HTML manual is now generated with tex2page.
  128. A number of changes to the VM to support the (future)
  129. native-code compiler have been made.
  130. The PreScheme type rule for IF is now more strict, thus
  131. disallowing code that would lead to invalid C output.
  132. (This fixes a bug reported by Markus Ziegler.)
  133. Bug fixes:
  134. The TRAVERSE structure for displaying heap statistics has
  135. been re-enabled.
  136. A number of misues of CALL-ERROR have been corrected
  137. (reported by Taylor Campbell).
  138. The VALUE-PIPES package works again
  139. (fix by Taylor Campbell).
  140. In PreScheme it is now possible to shift integers by
  141. non-constant shift widths.
  142. Logical right shifts in PreScheme work now
  143. (reported by Taylor Campbell).
  144. A bug in TERMINATE-THREAD! was fixed
  145. (reported by Taylor Campbell).
  146. A bug in the implementation of ,exit-when-done was fixed.
  147. A bug in the regexp-matching code that prevented matching
  148. the empty string correctly was fixed.
  149. A bug in the implementation of STRING-CONTAINS from SRFI-13
  150. was fixed.
  151. A bug in the implementation of :WHILE in SRFI-42 was fixed
  152. (submitted by Sebastian Egner).
  153. Bugs in the implementations of ANGLE and MAGNITUDE were
  154. fixed.
  155. An obscure bug in the implementation of APPLY (which was
  156. triggered by certain instances of (apply apply ...) )
  157. was fixed.
  158. For a degenerate case of ITERATE, the code was made to
  159. conform the documentation
  160. (reported by Taylor Campbell).
  161. Various miscellaneous fixes.
  162. 12/05/04 (version 1.2)
  163. Additions:
  164. The LU-DECOMPOSITIONS structure was added for good.
  165. The CONDVAR structure now exports CONDVAR?.
  166. SRFI 22 ("Running Scheme Scripts on Unix") is fully
  167. supported.
  168. An implementation of SRFI 45 was added.
  169. Scheme 48 now builds from a directory other than the source
  170. directory. This enables builds for multiple platforms
  171. from a single source directory.
  172. Changes:
  173. Scheme 48 uses floating-point arithmetic by default
  174. now---as if FLOATNUMS were loaded in a previous release. To
  175. that end, Scheme 48 now uses Bob Burger's lightning-fast
  176. free-format floating-point printer.
  177. "make install" now creates the installation directories.
  178. Bug fixes:
  179. The PreScheme compiler works again for the VM---in
  180. 1.1, there was a bug in the type inferencer related to
  181. exactness.
  182. A number of bugs in the REGEXPS structure were fixed
  183. (many noted by James B Crigler).
  184. The closed compilator for ERROR was buggy
  185. (reported by Taylor Campbell).
  186. A number of documentation bugs were fixed.
  187. The assembler works again, at least rudimentarily.
  188. The SPATIAL structure loads and works again.
  189. Most of the code in scheme/misc (ANNOTATIONS, DOODL, SICP,
  190. INTEGER-LENGTHS) works again.
  191. SPAWN now returns the created thread, and the THREADS
  192. structure exports CURRENT-THREAD. (As the 1.1 documentation
  193. already claimed.)
  194. Floating-point numbers are now printed correctly. (See
  195. above.)
  196. "make install" now installs scheme48write-barrier.h.
  197. Two subtle GC bugs related to threads were fixed
  198. (reported by Jorgen Schaefer).
  199. Some arithmetic bugs were fixed (reported by Aubrey Jaffer).
  200. A number of bugs related to the handling of I/O error were
  201. fixed.
  202. The debugger now prints more information about the context
  203. of a VM exception.
  204. A GC bug related to POSIX signals was fixed.
  205. The POSIX-PROCESSES structure now exports SIGNAL? and SIGNAL=?.
  206. 05/07/04 (version 1.1)
  207. Additions
  208. Added Enum-sets (which are in big/enum-set.scm along with their struct).
  209. Added SRFIs 25, 26, 27, 28, 31, 37, 42.
  210. Added documentation for the thread system.
  211. Added documentation for numerous other libraries.
  212. Added structure definition for LU-DECOMPOSITIONS.
  213. Added Hilbert vectors to the regular build.
  214. Changes:
  215. DUP, DUP-SWITCHING-MODE, and DUP2 now takes ports as arguments, as
  216. the manual says, instead of channels.
  217. Added a 'start' index argument to the Posix regular-expression matcher
  218. (this is an incompatible change).
  219. BLOCK and MAKE-READY are no longer exported by the thread package.
  220. Use the MAYBE-COMMIT-AND-... versions instead.
  221. Placeholders now use the commit mechanism instead of disabling
  222. interrupts.
  223. lock.scm has been moved from rts/ to big/ because the S48 system no
  224. longer uses them.
  225. The old SORT library has been replaced by Olin Shiver's
  226. collection of sort libraries. (The SORT structure retains
  227. its old interface.)
  228. It's possible to quote filenames for , commands.
  229. Notable bug fixes:
  230. Locks and placeholders work correctly.
  231. INEXACT->EXACT now works on exact numbers and vice versa.
  232. LETREC is now compiled correctly.
  233. CALL-WITH-VALUES now works correctly for the
  234. one-return-value case.
  235. SRFI 0 now exports MAP, FOR-EACH, MEMBER, and ASSOC.
  236. Blocking threads are held onto via cells to allow terminated threads
  237. to be summarily removed. MAYBE-COMMIT-AND-BLOCK is passed this cell
  238. as an argument. This fixes a race condition in the blocking
  239. mechanism. Also as a result of this, locks etc. use regular queues
  240. instead of thread-queues.
  241. Package mutation code now knows that structure clients may be either
  242. packages or structures (found and fixed by Martin Gasbichler).
  243. c/write-barrier.h has been renamed c/scheme48write-barrier.h (a
  244. change) and added to the list of include files that are installed
  245. (it is #include'd by scheme48.h which was already being
  246. installed).
  247. INTEGER? now works correctly on floats.
  248. The sources can now be compiled by a C++ compiler.
  249. Numerous minor type issues in the C code were fixed.
  250. Some GC problems with the POSIX code were fixed.
  251. The SRFI 5 implementation now conforms to the specification.
  252. Channels closed by CALL-WITH-{INPUT,OUTPUT}-FILE through GC
  253. no longer cause a mesage to be printed.
  254. 10/7/01 (version 1.0)
  255. Bug fixes:
  256. Fixed a problem with the debug data for LETREC environments.
  257. Null output ports now marked as output ports.
  258. Command reader now checks that , is followed by a symbol.
  259. Got rid of 'return <value>;' in void functions in vm/*.c files.
  260. Changes:
  261. The byte-code architecture has been changed. It no longer has
  262. dedicated registers for the template and environment. All values
  263. are now accessed via the stack pointer.
  264. Image writer now uses hash tables instead of breaking hearts. This
  265. allows for more careful construction of the image files and means
  266. that having static areas no longer prevents writing images.
  267. Continuations no longer have headers when on the stack, making
  268. non-tail calls a little bit faster.
  269. Removed the unused PORT-LOCKED? from ports.
  270. Made for less duplication of code between the VM and RTS: put the
  271. continuation offsets into vm/arch.scm, moved some code around so
  272. that vm/data.scm could be used by the RTS, the interface definitions
  273. for vm/arch.scm and vm/data.scm are now shared.
  274. The VM's stack pointer (*stack*) now points to the top value on the
  275. stack instead of the unused location just above.
  276. The VM files are now in organized into subdirectories.
  277. The interrupt and stack overflow checks have been merged into a
  278. single test. Calls are a little bit faster.
  279. 7/15/01 (version 0.57)
  280. Additions:
  281. Added a SYSTEM procedure that calls the C system() function
  282. (in structure c-system-function).
  283. Added SRFIs 11, 13, 14, 16, 17, and 23.
  284. Bug fixes:
  285. Removed duplicate definitions of S48_{ENTER|EXTRACT}_BOOLEAN
  286. from c/scheme48.h.
  287. Fixed a problem in lookup_record() in c/posix/proc.c that was
  288. causing crashes.
  289. Added scheme/srfi to the list of directories that get installed.
  290. Zeroed sockaddr structs in c/unix/socket.c.
  291. Added configuration tests for socklen_t.
  292. Marked DEFINE-RECORD-TYPE as syntax in the SRFI-9 interface.
  293. Fixed (another) bug in s48-shorten-bignum.
  294. Fixed off-by-one error that caused one resumer record to be
  295. ignored when writing out images.
  296. Fixed problem with macros expanding into uses of finite types.
  297. Added a handler for the TIME opcode to take care of any arithmetic
  298. overflow.
  299. 5/30/01 (version 0.56)
  300. Bug fixes:
  301. Fixed problems with s48-shorten-bignum that were causing crashes.
  302. Patched PreScheme compiler so that the VM would compile (how did
  303. this not get noticed earlier?).
  304. Added scheme/posix to the list of directories that get installed.
  305. Replaced sa.sa_action = ... with sa.sa_handler = ... in
  306. c/posix/proc.c.
  307. Added one-argument version of ATAN.
  308. Fixed macro-defining-macro bug that showed up in SLIB's FLUID-LET.
  309. SLEEP checks that its argument is a positive real number and
  310. correctly handles rationals and inexacts.
  311. Fixed a few typos in the manual.
  312. 5/21/01 (version 0.55)
  313. Additions:
  314. The inspector is more efficient in dealing with large vectors, long
  315. lists and circular lists.
  316. Bug fixes:
  317. Added an error handler to command-levels.scm to avoid bad interaction
  318. between ,break-on-warnings and the handler-raised undefined-variables
  319. warning.
  320. Fixed endless recursion occuring when loading floatnums after
  321. creating inexact rationals.
  322. Made ,reset throw away the old value stack
  323. build/filenames.scm now loads the interface files so we no longer get
  324. the plethora of "undefined variable" warnings.
  325. The flat-environment optimizer is now idempotent.
  326. Fixed a problem with single-argument receivers as in
  327. (call-with-values ... (lambda (x) ...))
  328. Minor edits to the documentation.
  329. Fixed a problem that occured when (optimize auto-integrate)
  330. was used in the presence of definition-producing macros.
  331. Changes to the socket code to work around an oddity in FreeBSD.
  332. Added the os-{...-}name functions to the Posix interface.
  333. The socket code uses socklen_t instead of ints in the appropriate
  334. places (the configure script defines socklen_t if necessary).
  335. (thanks to Martin Gasbichler).
  336. Changes:
  337. Replaced all uses of FLUID-SET! with fluids bound to cells.
  338. Renamed WRITE-ONE-LINE (which did nothing of the sort) to
  339. LIMIT-OUTPUT; the old name is still there for compatibility.
  340. Added vertical tab (ascii->char 11) to ascii-whitespaces to make
  341. our definition of whitespace the same as POSIX's.
  342. The procedures in the records and records-internal structures are
  343. now in three structures: 'records' has the low-level, vector-like
  344. primitives, 'record-types' has everything relating to the type
  345. records, and 'records-internal' has the leftovers.
  346. Removed many of the uses of STRUCTURE-REF (because the manual
  347. doesn't mention it).
  348. 3/20/01 (version 0.54)
  349. Additions:
  350. SET and UNSET commands for modifying switch values. The following
  351. commands are now obsolete (but still work): batch, bench,
  352. break-on-warnings, form-preferred, and levels.
  353. Support for some SRFIs.
  354. Support for some Posix functionality.
  355. Functional interface to Posix regular expression matching.
  356. ITERATE and REDUCE macros for writing loops.
  357. Much of the documentation is now in a single manual (doc/manual.ps
  358. or doc/html/manual.html).
  359. MODIFY added to the module language for interface mangling.
  360. LETREC-CLOSURE opcode for LETREC's when using flat environments.
  361. OUTPUT-PORT-READY? in I/O is CHAR-READY? for output ports.
  362. Deletions:
  363. Removed misc/syscall.scm and misc/getenv.scm. Use the posix calls
  364. instead.
  365. Removed the .notify rule.
  366. Changes:
  367. Bignums are now handled in C code borrowed from MITScheme (thanks
  368. to Martin Gasbichler).
  369. Replaced ,levels <i> with ,reset <i> and added ,resume <i>.
  370. The command interpreter loads ,OPENed packages without asking.
  371. Do `,set ask-before-loading' to get the old behavior.
  372. The command interpreter no longer prints out the names of files
  373. and modules being loaded. Do `,unset load-silently' to get the
  374. old behavior.
  375. The command interpreter has changed in a number of other ways.
  376. See the manual.
  377. Changed misc/either.scm to use fluid variables and replaced (init)
  378. with (with-nondeterminism <thunk>). Moved the sources to
  379. big/either.scm and the structure definition to more-packages.scm.
  380. Moved the programming-environment packages out of more-packages.scm
  381. and into env-packages.scm. more-packages.scm was getting too large.
  382. Modified the opt/analyzer.scm code to get CADR to inline.
  383. The last-resort condition handler now uses DEBUG-MESSAGE to print,
  384. in the hope that it will be more robust this way. The message
  385. is a bit more wordy as well.
  386. CHAR-READY? no longer causes any characters to be read from OS
  387. ports.
  388. Bug fixes:
  389. The flat-environment optimizer can now handle large environments.
  390. Removed command-interpreter's saved focus values from the stack
  391. to keep them from being captured by call/cc.
  392. The code in misc/pipe.scm works again.
  393. Changed variable `errno' in c/unix/misc.c to something that does
  394. not conflict with glibc.
  395. Fixed (lambda () (define x 1) (define y 2)) bug.
  396. Added Mike Sperber's more generalized alt/ fixes.
  397. Fixed definition of S48_SET_CAR() and friends in c/scheme48.h.
  398. Added EINTR checks to more of the system calls.
  399. Made macro-defining SYNTAX-RULES macros work.
  400. 2/24/99 (version 0.53)
  401. Additions:
  402. DEFINE-FINITE-TYPE and DEFINE-ENUMERATED-TYPE (in structure
  403. FINITE-TYPES; documented in doc/utilities.ps and
  404. doc/html/utilities.html.
  405. Added CHAR-SOURCE->INPUT-PORT, CHAR-SOURCE->OUTPUT-PORT,
  406. MAKE-STRING-OUTPUT-PORT, STRING-OUTPUT-SOURCE-OUTPUT to
  407. the extended-ports structure.
  408. The structure BYTE-VECTORS is the same as CODE-VECTORS with `byte'
  409. replacing `code' in all the names. The underlying datatype is the
  410. same for both, and uses `byte' when printing.
  411. There is a new and much improved interface to C code, thanks to
  412. Mike Sperber. It is documented in in doc/external.ps and
  413. doc/html/external.html.
  414. Bug fixes:
  415. Session-data and user-context records are no longer in the fluid env.
  416. Lexical environments can now be nested up to 65k deep.
  417. ,expand no longer prints `definition in expression context' warnings.
  418. Added ARRAY? and SEARCH-TREE? to the array and search tree structures.
  419. Flat environments work again.
  420. Templates of the form `var ... ...' now work in syntax rules.
  421. Reinstated caching of SCHEMIFY results to greatly reduce the space
  422. used by debugging info.
  423. Added argument checking to STRING->NUMBER and NUMBER->STRING.
  424. Fixed space blow-up in LOAD.
  425. Unused ports are closed more reliably.
  426. Changes:
  427. The heap, gc, and image code is now in three separate modules.
  428. The symbol table is now held in a VM register.
  429. Inlined SHOWING-FOCUS-VALUES into the main command loop and moved
  430. the sentinel call to reduce the noise at the base of ,preview output.
  431. The tables returned by MAKE-TABLE now use EQV? for comparison (instead
  432. of EQ?). This makes these tables about 50% slower when numbers are
  433. used as keys, but significantly more accurate.
  434. Floating-point numbers are no longer double boxed.
  435. 7/22/98 (version 0.52)
  436. Bug fixes:
  437. Fixed problems with unbound variables in SET! and the inliner.
  438. Made macro expansion a bit less eager; this should reduce the amount
  439. of heap space needed for compilation.
  440. 6/29/98 (version 0.51)
  441. Incompatible changes:
  442. BIG-SCHEME no longer exports its version of DEFINE-RECORD-TYPE (but
  443. it is available from the structure DEFRECORD). I am slowly removing
  444. all uses of this version of DEFINE-RECORD-TYPE from the sources.
  445. The version of DEFINE-RECORD-TYPE exported by DEFINE-RECORD-TYPES
  446. checks that every constructor argument corresponds to a field.
  447. Uses of LAP must list their free variables (see env/assem.scm).
  448. Changes:
  449. The functions exported by BIG-SCHEME that were not available elsewhere
  450. are now exported by BIG-UTIL as well.
  451. MAKE-RANDOM now checks its argument (but is still a fairly poor
  452. source of pseudo-randomness).
  453. SIGPIPE no longer kills the S48 process (this was done earlier but
  454. not listed here).
  455. The macro/module/compiler code has been reorganized. Hopefully
  456. the only noticable difference is in the babble written when loading
  457. files and packages.
  458. Added CODE-QUOTE (in its own structure of the same name) for use
  459. in writing hygienic macro-generating macros. CODE-QUOTE is the
  460. same as QUOTE except that it does not strip off any of the macro
  461. system's name annotations.
  462. The FLOATNUMS package now exports FLOATNUM?.
  463. Bug fixes:
  464. Fixed phony stack-overflow bug.
  465. Fixed a bug in thread time-debit mechanism.
  466. Made floating point numbers always print as inexact.
  467. Got rid of bogus type-error warnings when using floatnums.
  468. Fixed declaration of call_startup_procedure in c/main.c.
  469. 2/11/98 (version 0.50)
  470. Fixed bug in closed-compiled version of READ-CHAR.
  471. Fixed negative-key bug in integer tables.
  472. 11/18/97 (version 0.49)
  473. Removed some non-portable Kali code that had been accidentally
  474. included in c/extension.c.
  475. 10/29/97 (version 0.48)
  476. The VM's calling convention now has the caller doing protocol checking,
  477. instead of the callee. The *NARGS* register no longer exists.
  478. Scheme's variable-arity procedures (APPLY, MAKE-VECTOR, +, -, etc.)
  479. are usually handled without raising an exception. Calls with an
  480. `atypical' number of arguments are now much faster.
  481. Opcodes were added for >, <=, and >=.
  482. Procedures can take up to about 8k arguments. The limit is determined
  483. by the value of AVAILABLE-STACK-SPACE in scheme/vm/arch.scm.
  484. Compiler detects wrong number of arguments in ((lambda ...) ...).
  485. Removed the dynamic point from the dynamic environment to make
  486. DYNAMIC-WIND behave reasonably with threads.
  487. KILL-THREAD! should work more reliably.
  488. The I/O primitives now pass OS error messages to the exception handlers.
  489. I/O errors when flushing buffers no longer crash the system.
  490. The Pre-Scheme compiler's hack for shadowing global variables with
  491. local copies is no longer used.
  492. Incompatible changes:
  493. The internal thread interface was simplified.
  494. There are some architecture changes; .image files will have to
  495. be rebuilt.
  496. ACCESS-SCHEME-48 and scheme/misc/slib-init.scm have been removed
  497. (thanks to Mike Sperber's updating of slib).
  498. 1/27/97 (version 0.47)
  499. Fixed ,exit and added ,exit-when-done.
  500. CASE now uses EQV? exclusively.
  501. 11/5/96 (version 0.46)
  502. Fixed a few minor thread problems.
  503. opt/analyze.scm now writes to current-noise-port.
  504. DELQ and DELETE now delete every instance, as the documentation claims.
  505. There should be no more spurious heap-overflow interrupts.
  506. Fixed bugs that caused the system to die if stdout blocked.
  507. Template offsets have been increased to two bytes.
  508. Disassembly of flat-lambda now works (fix from Michael Sperber).
  509. 8/23/96 (version 0.45)
  510. Fixed various problems with thread termination and nested schedulers.
  511. Changed thread-internal interface to make schedulers easier to write.
  512. BITWISE-{AND,IOR,XOR} now take an arbitrary number of arguments.
  513. Output ports have their buffers flushed when Scheme 48 terminates.
  514. In keeping with RnRS, CLOSE-{IN,OUT}PUT-PORT are now idempotent.
  515. MODULO now handles negative arguments properly.
  516. 6/20/96 (version 0.44)
  517. The VM's byte-code interpreter and storage management code are
  518. now compiled to separate C files.
  519. The socket code works again.
  520. 5/10/96 (version 0.42-0.43)
  521. Various fixes to the thread and I/O systems.
  522. The Unix interface code is more portable.
  523. EOF (control-D) now resumes running all non-broken threads on
  524. resumed command level. Thus EOF after a keyboard interrupt
  525. (control-C) resumes running the interrupted thread.
  526. 11/30/95 (version 0.41)
  527. The distribution has been reorganized to reduce the number of files
  528. in the top-level directory.
  529. The threads implementation has been replaced with one based on engines
  530. to allow for nested schedulers.
  531. Threads are now included in the initial image.
  532. The I/O system has been fixed and automatic periodic output buffer
  533. flushing has been reinstalled.
  534. Command levels have been integrated with the threads system to ensure
  535. that at most one REPL is active at any time.
  536. CONDVAR has been changed to PLACEHOLDER (condition variables being
  537. something quite different).
  538. ,profile no longer works, it will be fixed in a later version.
  539. MIN and MAX now do inexact contagion.
  540. 4/13/95 (version 0.40)
  541. Renamed error-output-port to current-error-port.
  542. Reinstated ".gdbinit"...
  543. segment->template now takes parent templates debug data as an
  544. argument.
  545. Automatic periodic output buffer flushing has been
  546. temporarily disabled. A future version of the I/O system
  547. will fix it.
  548. Fixed expansion of named LET.
  549. The bummed-define-record-types structure is now gone; use
  550. define-record-types instead.
  551. There is somewhat better syntax checking now.
  552. 8/12/94 (versions 0.38-0.39)
  553. ,profile <command> prints out profiling information
  554. An interrupt is raised after every GC; the default handler checks
  555. to see if some reasonable amount of storage was reclaimed.
  556. Some of the standard Scheme procedures, including LENGTH, FOR-EACH,
  557. VECTOR, and ASSQ, are now significantly faster.
  558. Making, accessing, and setting records is faster.
  559. tar file now includes the top-level directory
  560. The "scheme-level-2-internal" structure has been renamed to
  561. "usual-resumer".
  562. ` ( . ' is now illegal (as required by the R4RS grammar).
  563. Made DELAY and FORCE comply with R4RS.
  564. The EXPAND optimizer does a topological sort on definitions.
  565. (optimize flat-environments) causes the compiler to produce
  566. flat (instead of nested) lexical environments.
  567. The I/O system has been rewritten to do its own buffering. There
  568. are significant changes to unix.c to support this. See doc/io.txt.
  569. (ERROR-OUTPUT) is now available from the structure i/o.
  570. jar-defrecord has been replaced with a modified bummed-jar-defrecord
  571. Files load about 25% faster, for a number of reasons.
  572. Removed the copy of vm/arch.scm from the rts directory.
  573. Threads and sockets work together; SOCKET-ACCEPT no longer blocks.
  574. The compiler no longer prints out .'s as it compiles definitions.
  575. 7/5/94 (version 0.37)
  576. I/O opcodes now raise an interrupt instead of blocking (they still
  577. block if no corresponding interrupt handler has been installed).
  578. The threads code has been rewritten; threads that block on I/O
  579. do not busy wait and THREAD-READ-CHAR and THREAD-PEEK-CHAR have
  580. been removed.
  581. Attempting to obtain a lock twice or to release an unowned lock
  582. now signal errors.
  583. READ-CHAR-WITH-TIMEOUT returns #F if the timeout occurs.
  584. The socket structure is back in more-packages.scm.
  585. Renamed .gdbinit to gdbinit
  586. tar file now contains a top-level directory
  587. 3/22/94 (version 0.36)
  588. Removed doc/lsc.ps for copyright reasons.
  589. Fixed (* 47123 46039) multiply bug.
  590. Modified vm/README to make it easier to run the VM.
  591. 3/16/94 (version 0.35)
  592. Fixed (exact->inexact 0.1) -> 0..1. bug.
  593. Fixed VM bug that permitted the creation of stored objects with
  594. negative sizes.
  595. 3/8/94 (version 0.34)
  596. "make check" target tests out various features.
  597. Fixes for SGI IRIX 4.0.5 and MIPS RISC/OS 4.51, courtesy
  598. Bryan O'Sullivan.
  599. debug/run.scm and the "medium system" work again now.
  600. misc/static.scm should work on the 68000.
  601. Command processor no longer fluid-binds (interaction-environment)
  602. on recursive entry.
  603. 2/24/94 (version 0.33)
  604. Fixed bug in VM's interrupt system.
  605. Made non-local srcdir work in Makefile.
  606. Added (load-package 'bigbit) to vm/README.
  607. 2/23/94 (version 0.32)
  608. Some incompatible changes to the VM; .image files will have
  609. to be rebuilt.
  610. Improvements to configuration script and to unix.c to support
  611. a wider variety of Unixes. The system should now work
  612. under any Posix-compliant Unix (except maybe for
  613. char-ready?; see comments in unix.c).
  614. Upped the default heap size from 4 meg (2 per semispace) to 6
  615. meg (3 per semispace).
  616. New command line argument -s <size> for specifying size of
  617. stack buffer. Default is 2500 (words).
  618. $@ -> "$@" in script (thanks to Paul Stodghill for this fix).
  619. Obscure interrupt/exception VM bug fixed.
  620. It is now possible to put an initial heap image into static
  621. memory (effectively allocated by OS process creation).
  622. Immutable initial objects go into static read-only memory,
  623. and mutable initial objects go into static read-write
  624. memory. Initial objects not copied by the GC. There is no
  625. documentation yet, but look at the rules for little and
  626. debug/little.o in the Makefile if you're interested.
  627. 2/13/94 (version 0.31)
  628. Incompatible changes:
  629. In interfaces, all exported syntactic keywords must be
  630. given type :syntax. For example,
  631. (define-interface my-macros
  632. (export (my-macro :syntax) ...))
  633. Image entry procedures for the ,build command are now
  634. passed a list of strings, not just a single string, for
  635. the command line arguments following -a.
  636. The names of the macros defined in scheme48.h
  637. (pairp, car, string_length, etc.) are now all upper case.
  638. New "configure" script generates Makefile from Makefile.in
  639. and sysdep.h from sysdep.h.in (thanks to Gnu autoconf).
  640. See INSTALL and doc/install.txt.
  641. Bug fixes:
  642. Can now make vectors (strings, etc.) as big as the amount
  643. of heap space available (but you're still screwed if you
  644. try to make one bigger than 2^23-1 bytes - don't do it).
  645. Non-ANSI-ness fixed in scheme48vm.c (jump out of, then
  646. back into, a block expected block-local variables to be
  647. unchanged).
  648. Fixed big/external.scm (had VECTOR-POSQ instead of ENUM).
  649. In (define-syntax foo bar) you got an error if bar was a
  650. variable reference.
  651. Plugged a storage leak (file-environments table in
  652. env/debug.scm). Images made with ,build were too large.
  653. Flushed extraneous delay from make-reflective-tower.
  654. Renamed variables in Makefile to resemble Gnu standards.
  655. Fixed definition of LINKER_RUNNABLE in Makefile.
  656. Added doc/call-back.txt.
  657. Fixed define-enumerated documentation (doc/big-scheme.txt).
  658. Environment maps no longer retained for things in initial.image
  659. and scheme48.image. This makes scheme48.image about 170K
  660. smaller.
  661. 2/3/94 (version 0.30)
  662. Faster EXPT.
  663. FLOATNUMS improvement: (inexact->exact <float>) should now
  664. work, e.g.
  665. (inexact->exact (/ 1. 3.)) => 6004799503160661/18014398509481984
  666. Reinstated ACCESS-SCHEME-48 for the benefit of PSD (portable
  667. scheme debugger) and a certain other software package that
  668. shall remain nameless. It only knows about a small number of
  669. procedures, including things like ERROR and FORCE-OUTPUT.
  670. Various changes to support the Pre-Scheme compiler, notably
  671. SET-REFLECTIVE-TOWER-MAKER!.
  672. Incompatible change to the ENUMERATED structure: the names
  673. foo/bar no longer become defined. Write (enum foo bar)
  674. instead. This will macro expand into the correct small
  675. integer.
  676. 1/30/94 (version 0.29)
  677. Fixed ps_run_time() to call sysconf() to find out how many
  678. ticks there are per second. It used to assume 60. This
  679. affects the output of the ,time command, so don't try
  680. comparing numbers from this version with numbers from older
  681. versions.
  682. ,time command will now accept a command, e.g.
  683. ,time ,load foo.scm.
  684. It appears that if multiple arguments follow -a on the
  685. argument line, they are concatenated together with spaces
  686. separating them and passed to the startup procedure. I
  687. don't know how long this has worked. This will change in
  688. the future so that the startup procedure gets a list of
  689. strings.
  690. Installed what used to be called the GENERAL-TABLES structure
  691. as the TABLES structure used by the system. This allows
  692. the use of other comparison predicates besides EQ?, and
  693. eliminates some code that had a restrictive copyright
  694. notice.
  695. ENUM, NAME->ENUMERAND, and ENUMERAND->NAME are all macros.
  696. Enumerated types themselves are now macros as well.
  697. 1/23/94 Fixed bad multiplication bug in VM: (* 214760876 10) was
  698. returning 125112.
  699. Moved RECORD-TYPE? and RECORD-TYPE-FIELD-NAMES from the
  700. RECORDS-INTERNAL interface to the RECORDS interface, for
  701. a somewhat closer approximation to MIT Scheme.
  702. Various type system improvements.
  703. Still no documentation for the ,exec package, but see
  704. link/load-linker.exec for an example.
  705. New generic function feature, exported by the METHODS
  706. interface (see interfaces.scm), almost like in a certain
  707. dynamic object-oriented language.
  708. 1/11/94 (version 0.27)
  709. Change:
  710. The isomorphism used by CHAR->INTEGER and INTEGER->CHAR is
  711. no longer ASCII. This change was introduced in order to
  712. assist the development of portable programs. If you need
  713. ASCII encoding, you should open the ASCII structure and
  714. use the procedures CHAR->ASCII and ASCII->CHAR.
  715. Features:
  716. The help system is somewhat improved.
  717. New form DEFINE-STRUCTURE defines a single structure.
  718. Incompatible changes to package system:
  719. Renamed DEFINE-PACKAGE to DEFINE-STRUCTURES
  720. Renamed DEFINE-STRUCTURE to DEFINE
  721. Renamed all the base types from FOO to :FOO. E.g.
  722. :SYNTAX, :VALUE, :PAIR, etc.
  723. Other:
  724. Removed socket support due to restrictive copyright on some
  725. of the C code that was in extension.c.
  726. 12/21/93 ,take has been flushed in favor of ,exec ,load. Commands are
  727. now accessed via a distinguished package instead of a table.
  728. Documentation pending.
  729. Postscript (.ps) files now included in doc/ subdirectory. (I
  730. thought they had been there all along, but apparently I was
  731. wrong.)
  732. Enhanced, but still kludgey, floating point support. Use
  733. ,open floatnum.
  734. 12/12/93 (version 0.26)
  735. NetBSD port.
  736. Hacked write-level and write-depth for inspecting circular
  737. structure.
  738. Recursive FORCEs signal errors, e.g.
  739. (force (letrec ((loser (delay (force loser)))) loser))
  740. 12/7/93 (version 0.25)
  741. Bug fix:
  742. filenames.make can now be remade using initial.image. This
  743. means that you can snarf a distribution and then edit
  744. USUAL-FEATURES before making scheme48.image.
  745. 12/6/93 Incompatible changes:
  746. Change of terminology: "signature" --> "interface".
  747. This means that DEFINE-SIGNATURE is now called
  748. DEFINE-INTERFACE, etc.
  749. Some structures have been renamed:
  750. condition -> conditions
  751. continuation -> continuations
  752. exception -> exceptions
  753. queue -> queues
  754. port -> ports
  755. record -> records, record-internal -> records-internal
  756. table -> tables
  757. template -> templates
  758. The ,load-into command has been removed. Use ,in ... ,load
  759. instead (see below), e.g.
  760. ,in mumble ,load myfile.scm
  761. The heap size for -h is specified in words, not bytes. As
  762. before, the size must account for both semispaces; -h 2n
  763. means n words per semispace. This change was actually
  764. made a while ago, but I was confused as to what it meant.
  765. Bug fixes:
  766. #e1.7 reads as 17/10, (exact? 1+1.0i) => #f, and 1.0+i prints.
  767. Features:
  768. Things like ((structure-ref scheme if) 1 2 3) work.
  769. The following commands now take arbitrary commands to execute
  770. in the specified package, not just forms:
  771. ,config ,user ,for-syntax ,in <package>
  772. For example, you can say
  773. ,in mumble ,trace foo
  774. This subsumes the functionality of the ,load-into and
  775. ,load-config commands.
  776. Dynamic loading of shared libraries for System V systems
  777. (untested).
  778. Documentation:
  779. Somewhat improved. user-guide.txt now lists most of the
  780. interesting built-in packages. lsc.ps is a draft of "A
  781. Tractable Scheme Implementation," a paper submitted to Lisp
  782. and Symbolic Computation. See also doc/big-scheme.txt,
  783. doc/thread.txt, and doc/external.txt.
  784. 10/30/93 LET-SYNTAX and LETREC-SYNTAX.
  785. Arrays (see big/array.scm).
  786. Lots of internal changes.
  787. 7/20/93 Features:
  788. Type system. See doc/types.txt.
  789. 7/4/93 Features:
  790. New define-package clause (for-syntax <clause>*).
  791. E.g. (define-package ((my-package ...))
  792. (open ...)
  793. (for-syntax (open scheme my-utilities)
  794. (files more-crud-for-syntax))
  795. ...)
  796. A file name to package map is now used by the emacs
  797. interface. Whenever you load a file, or zap from a file that
  798. hasn't been previously loaded or zapped, the package in
  799. which forms are being evaluated is remembered in a table.
  800. The next time you zap some forms from the same file, they
  801. will be evaluated in that package.
  802. Sometimes you may get an association you don't want. In that
  803. situation, you can use the ,forget command to delete an
  804. entry in the table.
  805. A new ,push command goes to a deeper command level.
  806. Experimental "command preferred" command processor mode: if
  807. you give the command ",form-preferred off", commands will
  808. be "preferred" to forms, meaning that you don't need to
  809. type a comma before giving a command. To see the value
  810. of a variable FOO you have to say (begin foo).
  811. Experimental "no levels" command processor mode: if you
  812. give the command ",levels off", then an error will not
  813. push a new command level. If you want to ignore an
  814. error, you don't need to take any action - further
  815. evaluations will happen at top level. If you want to
  816. enter the inspector or get a preview, you can issue these
  817. commands or a ,push command immediately after the error
  818. occurs (more precisely, any time until the focus object
  819. is set by some other command).
  820. All of the mode-control commands (batch, bench,
  821. break-on-warnings, form-preferred, and levels) take
  822. an optional argument. When no argument is given, they
  823. will toggle the corresponding mode. With an argument of
  824. ON or OFF, they turn the mode on or off.
  825. The ,flush and ,keep commands have been made more flexible
  826. and verbose.
  827. 6/18/93 Incompatible changes:
  828. The access-scheme48 procedure has gone away. Use ,open
  829. or the module system instead.
  830. The user, configuration, and for-syntax packages no longer
  831. have variables bound to them in the configuration package.
  832. Where previously you said: Now you should say:
  833. ,in user <form> ,user <form>
  834. ,in config <form> ,config <form>
  835. ,in for-syntax <form> ,for-syntax <form>
  836. ,load-into config <file> ,load-config <file>
  837. ,load-into for-syntax <file> ,for-syntax (load "file")
  838. Features:
  839. There is an ,expand <form> command for debugging macros.
  840. The ,open command takes any number of structure names, and opens
  841. them all (like ,new-package).
  842. New procedure DEFINE-INDENTATION exported by the PP structure.
  843. E.g. (define-indentation 'let-fluid 1) is like Gnu emacs's
  844. (put 'let-fluid 'scheme-indent-hook 1).
  845. The inspector simplifies generated names in continuation
  846. source code display. E.g. when formerly it said
  847. "Waiting for (#{Generated lambda} () (x->node (car exps)))"
  848. now it says
  849. "Waiting for (lambda () (x->node (car exps)))"
  850. Macros can signal syntax errors by returning input expression
  851. unchanged. (Comparison uses EQ?.)
  852. Documentation:
  853. The doc/ directory contains a draft of a "Scheme 48
  854. Progress Report."
  855. Cleanup:
  856. Procedure NULL-TERMINATE added to structure EXTERNALS's
  857. signature.
  858. "Vulgar Scheme" renamed to "Big Scheme".
  859. Two new subdirectories, env/ (for programming environment)
  860. and big/ (for Big Scheme), now contain most of what was
  861. in the misc/ directory.
  862. Several source files that were in the top level and link/
  863. directories have moved to the env/ and alt/ directories.
  864. 5/6/93 Bug fixes:
  865. Fixed -h command line switch. The size was being improperly
  866. divided by 4, so if you asked for an N megabyte heap, you'd
  867. actually only get an N/4 megabyte heap.
  868. Nested backquotes were broken for a while; should be fixed
  869. now.
  870. Features:
  871. Quoted structure is read-only: e.g. (set-car! '(a b) 3) will
  872. produce an exception.
  873. ,config [<form>] and ,user [<form>] are like ,in <struct> <form>.
  874. Unix socket support; see misc/socket.scm.
  875. Now using gzip instead of compress for distributions.
  876. ,open command offers to load packages.
  877. A .gdbinit file sets a breakpoint at CM's exception raising
  878. code, and defines a handy "preview" command.
  879. 1/18/93 Feature:
  880. Scheme 48 distributions now have version numbers. The
  881. version number is printed in the image startup message.
  882. Please include it in bug reports.
  883. The module system is now documented. See doc/module.tex.
  884. 12/17/92 Bug fixes:
  885. Macro templates of the form (x ... y) are supported.
  886. Macro templates are now less fussy about meta-variable
  887. rank: you can do "(x y) ..." even when the rank of either
  888. x or y (but not both) is too low; the low-ranking text
  889. will be copied as many times as necessary. (A
  890. meta-variable's "rank" is the number of ...'s it sits
  891. under in the left-hand side of the rewrite rule.)
  892. SYNTAX-RULES is now itself hygienic. This means you can
  893. have a meta-variable named CAR, for instance.
  894. New development environment features:
  895. Commands now start with comma (",") instead of colon
  896. (":"). (Easier to type since it's not shifted.)
  897. values, call-with-values, dynamic-wind, eval,
  898. interaction-environment, and scheme-report-environment
  899. added per upcoming Revised^5 Scheme report. See
  900. doc/meeting.tex.
  901. Modifications to quoted structure will now be detected and
  902. reported as errors.
  903. An interrupt will occur if an insufficient amount of memory
  904. is reclaimed by a garbage collection.
  905. Inspector now accepts arbitrary command processor commands
  906. (with or without leading comma)
  907. ,keep command controls retention of debugging information.
  908. Features removed:
  909. #\page and #\tab. These aren't in the Scheme report.
  910. Their absence in Scheme 48 will encourage portability.
  911. access-scheme48 works with fewer names than before. Use the
  912. package system instead.
  913. Complex numbers not in the system, by default. Get them
  914. back by changing usual-features in more-packages.scm.
  915. Features changed:
  916. Many changes to package system. See doc/module.tex.
  917. The :identify-image command is gone. Instead, supply a
  918. second argument (optional) to the ,dump command.
  919. The inspector's TEM command has been shortened to T.
  920. Internal changes and features:
  921. Stored objects types are now part of the virtual machine
  922. architecture, i.e. known to the byte-code compiler.
  923. Run-time system is split up into many little modules.
  924. File names are retained in debug database. (But not used for
  925. anything yet...)
  926. Tweaks to table package reduce standard image size by 50K
  927. and increase compiler speed by 7%.
  928. Immutability bit in object headers.
  929. Weak pointers.
  930. 7/18/92 Features removed:
  931. Table package's default hash function no longer supports
  932. string, pairs, or vectors.
  933. 7/9/92 Bug fixes:
  934. (- 0 -536870912)
  935. Inspector now uses command i/o ports instead of current ones
  936. Inexact integers print as N. instead of #iN
  937. Throwing back into a call-with-....put-port now produces a
  938. warning instead of an error
  939. Feature fixes:
  940. In DEFINE-PACKAGE, OPEN no longer implies ACCESS.
  941. misc/receive.scm renamed to rts/values.scm, made to conform
  942. with Revised^5 Report, and installed internally.
  943. Features:
  944. New :load-package command. Uses file names in (file ...) clause
  945. of a define-package. These are interpreted relative to the
  946. directory in which the file containing the define-package
  947. was found.
  948. #\tab and #\page now print this way.
  949. 6/17/92 Bug fixes:
  950. Fixed bug in modulo.
  951. Flushed LAST-PAIR (which disappeared between R^3 and R^4).
  952. DEFINE-SYNTAX and SYNTAX-RULES now exist.
  953. CEILING, FLOOR, and ROUND now exist.
  954. GCD and LCM are now n-ary.
  955. STRING-CI=? and STRING-COPY fixed.
  956. STRING->SYMBOL now copies its argument before handing it to
  957. INTERN.
  958. =, <, etc. now work with more than two arguments.
  959. CHAR-READY? exists.
  960. Calls via APPLY are now tail-recursive.
  961. DISPLAY of vectors and lists works (ugh).
  962. Development environment improvements:
  963. Type ? at inspector to get list of inspector commands.
  964. Inspector D command goes to next continuation.
  965. Inspector M command shows more of a long menu.
  966. Inspector TEM command goes to a continuation's or closure's
  967. template.
  968. For closures and continuations, inspector displays local
  969. variables with their names.
  970. For continuations, inspector displays source code for
  971. expression into which control will return.
  972. Multiple command loop levels. EOF (control-D) now only pops
  973. out a single level. :reset pops all the way out. :level n
  974. goes out to level n.
  975. Can disable benchmark mode.
  976. Procedures made with (let ((f (lambda ...))) ...) now print
  977. with names.
  978. Features:
  979. Package system: special forms define-package and package-ref;
  980. command processor commands :set-package, :load-into,
  981. :clear-package, :new-package, :export, :open-package, etc.
  982. In misc directory: threads, queues, extended ports, format, etc.
  983. Changes to system environment:
  984. user-initial-environment -> user-package
  985. record-updator -> record-modifier
  986. primitive-throw superseded by with-continuation
  987. ash -> arithmetic-shift
  988. New bootstrap regime.
  989. Support for threads: alarm clock interrupt, etc.
  990. Etc.:
  991. Liberal COPYRIGHT file, and a little notice in each source file.
  992. INSTALL and NEWS split off from README.
  993. doc.txt renamed to user-guide.txt.
  994. The Makefile now provides two ways to make "s48" for
  995. installation. One depends on the exec #! script execution
  996. feature and the other doesn't.
  997. "make" targets for testsys.image and little.image.
  998. Runs Jaffer's test suite and library.
  999. Flushed s48.el. Use cmuscheme instead.
  1000. 9/5/90 Command processor argument parser revamped.
  1001. :load, :trace, and :untrace commands take arbitrary number
  1002. of arguments. Argument to :proceed is optional.
  1003. New (but undocumented) :identify-image command.
  1004. Better error messages: wrong number of arguments, undefined
  1005. variable.
  1006. +, *, min, max, apply are now n-ary; -, /, make-string,
  1007. make-vector, read-char, peek-char, write-char have
  1008. appropriate argument optionality.
  1009. Better internal support for macros; not yet ready for release.
  1010. Added STRING as per R^3.99RS.
  1011. More testing of Scheme version of bytecode interpreter.
  1012. Better scoping of ##; files can't see command processor context.
  1013. OR and CASE don't cons closures.
  1014. VM checks for non-existent heap image file, gives error
  1015. message instead of "bus error".
  1016. Numerous internal changes in compiler and exception system.
  1017. Fixed char<?.
  1018. Fixed -.5 bug in string->number.
  1019. 8/26/90 Tested (link-system) inside of T; seems to work.
  1020. Benchmark mode available via :BENCH command.
  1021. System is 15K bigger due to new fatter global environment
  1022. representations.
  1023. Inspector abbreviation improved.
  1024. Disassembler now works on continuations, sort of.
  1025. 7/26/90 ((lambda ...) ...) no longer makes a closure
  1026. Features now in default system:
  1027. :inspect
  1028. :dis[assemble]
  1029. Generic arithmetic: bignums, rationals, complexes
  1030. rationalize
  1031. :time command is more verbose
  1032. MOREFILES variable in Makefile for loading extra stuff
  1033. Default heap size increased to 2 megabytes per semispace