news.txt 54 KB

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