* Change `environment-link-name' to call `->environment' on its two
authorChris Hanson <org/chris-hanson/cph>
Sat, 12 Aug 1989 08:18:31 +0000 (08:18 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 12 Aug 1989 08:18:31 +0000 (08:18 +0000)
commit6064c3e68651adf0c4e734a969c010e1fca7f647
tree676ab40a66af574760c61c19088106e7473e3944
parente0bf7f0a0eaca740f59067ca191cf5d3c4801534
* Change `environment-link-name' to call `->environment' on its two
environment arguments.

* Move `vector-binary-search' to the global environment.  Fix a bug in
it -- a confusion between the < used for comparing integers, and that
for comparing keys.

* New variable `load/suppress-loading-message?' prevents the file
loader from printing the "loading -- done" messages.

* Implement `pathname-relative?' which accepts two pathnames; if the
second has a directory part which is a "prefix" of the first, this
returns a copy of the first pathname with the "prefix" removed.
Example:

    (pathname-relative? (->pathname "/usr/bin")
(->pathname "/usr/"))
   ==> #[pathname 5 "bin"]
v7/src/runtime/global.scm
v7/src/runtime/infutl.scm
v7/src/runtime/load.scm
v7/src/runtime/pathnm.scm
v7/src/runtime/runtime.pkg
v7/src/runtime/version.scm
v8/src/runtime/global.scm
v8/src/runtime/infutl.scm
v8/src/runtime/load.scm
v8/src/runtime/runtime.pkg