summaryrefslogtreecommitdiff
path: root/ice-9/q.scm
Commit message (Collapse)AuthorAgeFilesLines
* move ice-9/ and oop/ under module/Andy Wingo2008-11-011-153/+0
| | | | | | Moved ice-9/ and oop/ under module/, with the idea being that we have only scheme under module/. Adjusted configure.in and Makefile.am appropriately. Put oop/ at the end of the compilation order.
* merge from 1.8 branchKevin Ryde2006-04-161-1/+1
|
* The FSF has a new address.Marius Vollmer2005-05-231-1/+1
|
* (q-pop!): Should be "null?" not "not" for end-of-list.Kevin Ryde2004-01-061-2/+2
| | | | Reported by Richard Todd.
* Changed license terms to the plain LGPL thru-out.Marius Vollmer2003-04-051-37/+12
|
* * lib.scm: Move module the system directives `export',Mikael Djurfeldt2001-10-211-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `export-syntax', `re-export' and `re-export-syntax' into the `define-module' form. This is the recommended way of exporting bindings. * srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm, srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system directives `export', `export-syntax', `re-export' and `re-export-syntax' into the `define-module' form. This is the recommended way of exporting bindings. * goops.scm, goops/active-slot.scm, goops/compile.scm, goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm, goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move module the system directives `export', `export-syntax', `re-export' and `re-export-syntax' into the `define-module' form. This is the recommended way of exporting bindings. * slib.scm (array-indexes): New procedure. (*features*): Extend. (Probably some of these options should be set elsewhere.) (Thanks to Aubrey Jaffer.) * and-let-star-compat.scm, and-let-star.scm, calling.scm, channel.scm, common-list.scm, debug.scm, debugger.scm, expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm, null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm, q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm, safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm, syncase.scm, threads.scm: Move module the system directives `export', `export-syntax', `re-export' and `re-export-syntax' into the `define-module' form. This is the recommended way of exporting bindings.
* Added exception notice to all files.Marius Vollmer2001-06-031-0/+24
| | | | | | (module-export!): Revert 2001-06-02 change. It caused more problems than it solved by accidentally re-exporting importing bindings once in a while.
* Update copyright.Thien-Thi Nguyen2001-05-061-17/+21
| | | | Surround commentary w/ standard markers; nfc.
* * q.scm (sync-q!, q?, q-remove!, q-push!, enq!): Lots of bugs, andJim Blandy1998-10-091-38/+47
| | | | | | (eq? #f '()) assumptions. Make functions that aren't documented to return anything else return the queue itself. (Bug report from Michael Livshin --- thanks!)
* * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,Jim Blandy1997-10-221-4/+4
| | | | string-fun.scm: Added copyright notices; reformatted.
* Suggestion and script from Maciej Stachowiak:Jim Blandy1997-09-301-0/+139
* boot-9.scm: Split off modules into separate, autoloadable files. This reduces startup time from 10.5s to 5.5s (user cpu). * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm, string-fun.scm: New files, containing stuff that used to be in boot-9.scm. * Makefile.am (ice9_sources): List new files here, for distribution and installation. * Makefile.in: Regenerated.