diff --git a/code/alieneval.lisp b/code/alieneval.lisp index 1d5c4860aeb2201f352f41a090ed7bb86109c1a7..fbe36854015aca2ebb73187e2a2100ea9552c8c5 100644 --- a/code/alieneval.lisp +++ b/code/alieneval.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.10 1991/02/08 13:30:36 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.9 1990/11/18 17:09:54 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.10 1991/02/08 13:30:36 ram Exp $ ;;; ;;; This file contains any the part of the Alien implementation that ;;; is not part of the compiler. diff --git a/code/array.lisp b/code/array.lisp index 3ee67c739ce0d125b7c5d9e0c09bb25cb3326765..a6081dc8e2d3373afcf6c5816b9e27ff34456e9b 100644 --- a/code/array.lisp +++ b/code/array.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.9 1991/02/08 13:30:44 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.8 1991/01/14 01:44:09 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.9 1991/02/08 13:30:44 ram Exp $ ;;; ;;; Functions to implement arrays for CMU Common Lisp. ;;; Written by Skef Wholey. diff --git a/code/backq.lisp b/code/backq.lisp index 4d40fc3485d750828adf4e396963b40ddf7bcd89..40b58da106eb377a2eee0d79caee68748a3a9020 100644 --- a/code/backq.lisp +++ b/code/backq.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Mode: Lisp; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/backq.lisp,v 1.2 1991/02/08 13:30:51 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; BACKQUOTE: Code Spice Lispified by Lee Schumacher. diff --git a/code/bignum-test.lisp b/code/bignum-test.lisp index 24962ef1b65626cdaa1babf4fda451813672689f..63fc241abb95f9cf9f0bfbcdf6f7ff3f7d663fca 100644 --- a/code/bignum-test.lisp +++ b/code/bignum-test.lisp @@ -1,8 +1,19 @@ ;;;; -*- Package: Bignum -*- -;;;; -;;;; Some stuff to check that bignum operations are retuning the correct -;;;; results. -;;;; +;;; +;;; ********************************************************************** +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/bignum-test.lisp,v 1.2 1991/02/08 13:30:53 ram Exp $") +;;; +;;; ********************************************************************** +;;; +;;; Some stuff to check that bignum operations are retuning the correct +;;; results. +;;; (in-package "BIGNUM") (defvar *in-bignum-wrapper* nil) diff --git a/code/bignum.lisp b/code/bignum.lisp index f32dec34de2c56dba52a917b6221d6b048227bb0..500bae7f69dfab858e615b92bf3ec8ea8a38d8cf 100644 --- a/code/bignum.lisp +++ b/code/bignum.lisp @@ -2,9 +2,13 @@ ;;; ;;; ********************************************************************** ;;; This code was written as part of the CMU Common Lisp project at -;;; Carnegie Mellon University, and has been placed in the public -;;; domain. If you want to use this code or any part of CMU Common -;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU) +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/bignum.lisp,v 1.16 1991/02/08 13:30:56 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains code to implement bignum support. diff --git a/code/bit-bash.lisp b/code/bit-bash.lisp index f0e3840ad5fcf90213ce057bfb88bd365bcc46c0..5df64588b74380f2a786df9cb4a0a6aa662eda7e 100644 --- a/code/bit-bash.lisp +++ b/code/bit-bash.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/bit-bash.lisp,v 1.8 1991/02/08 13:31:12 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to implement bit bashing. diff --git a/code/c-call.lisp b/code/c-call.lisp index a3536e141e7b54f216a0d2cb1677c294a7309ffb..10bc6a6edd9d4007d0b58da6ff478681cda1975b 100644 --- a/code/c-call.lisp +++ b/code/c-call.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: EXTENSIONS; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.4 1991/02/08 13:31:16 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains stuff used for calling out to C routines that are diff --git a/code/char.lisp b/code/char.lisp index f97e56fb142cca084e7423b779c087d3624a417a..975fbc9382ec04b7b8f285194730af73e09b053c 100644 --- a/code/char.lisp +++ b/code/char.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/char.lisp,v 1.3 1991/02/08 13:31:22 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Character functions for Spice Lisp. Part of the standard Spice Lisp diff --git a/code/clx-ext.lisp b/code/clx-ext.lisp index 4bc19198624c7473263929c2ab6eb1f284727904..3d0268fd9761d9cad7d6961598b8f583aca4e571 100644 --- a/code/clx-ext.lisp +++ b/code/clx-ext.lisp @@ -1,11 +1,14 @@ ;;; -*- Package: Extensions; Log: code.log; Mode: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; Spice Lisp is currently incomplete and under active development. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/clx-ext.lisp,v 1.4 1991/02/08 13:31:25 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains code to extend CLX in the CMU Common Lisp environment. diff --git a/code/commandline.lisp b/code/commandline.lisp index 2ae87e6af6fb8aa3f18d03f2586ce7aad517d816..04513d404458afe3667c3258ee72e7d863739fc3 100644 --- a/code/commandline.lisp +++ b/code/commandline.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Extensions; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/commandline.lisp,v 1.2 1991/02/08 13:31:31 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Stuff to eat the command line passed to us from the shell. diff --git a/code/debug-info.lisp b/code/debug-info.lisp index d365b4b19bff2921e18747260e561fe1b948f34e..b55aa729e8e9557e6b47c767d192d1f10f91bee4 100644 --- a/code/debug-info.lisp +++ b/code/debug-info.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: C -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-info.lisp,v 1.20 1991/02/08 13:31:35 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains structures used for recording debugger information. diff --git a/code/debug-int.lisp b/code/debug-int.lisp index 05f69be7ee5cb45cc9288f39dc5fb0b6ce7fb46b..21811188ea100b688ffdcf099ec631be96d0e055 100644 --- a/code/debug-int.lisp +++ b/code/debug-int.lisp @@ -1,11 +1,14 @@ ;;; -*- Mode: completion; Log: code.log; Package: debug-internals -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; Spice Lisp is currently incomplete and under active development. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.20 1991/02/08 13:31:38 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains the implementation of the programmer's interface diff --git a/code/debug.lisp b/code/debug.lisp index 0ef7f033c91d3143faf9160687e30bd9675368bc..49080ef47723ee95ec820115c522dc0cbbbb426b 100644 --- a/code/debug.lisp +++ b/code/debug.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: Debug; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.15 1991/02/08 13:31:52 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.14 1991/01/31 02:08:21 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.15 1991/02/08 13:31:52 ram Exp $ ;;; ;;; CMU Common Lisp Debugger. This is a very basic command-line oriented ;;; debugger. diff --git a/code/defmacro.lisp b/code/defmacro.lisp index af1f63ddf4eaf2ad67e970d250868a864f5e6252..9f20c0728d14f5f90b7c49f22494465f28e86808 100644 --- a/code/defmacro.lisp +++ b/code/defmacro.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Mode: Lisp; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defmacro.lisp,v 1.12 1991/02/08 13:31:57 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Written by Blaine Burks. diff --git a/code/defstruct.lisp b/code/defstruct.lisp index 9b3f3babc845a92e76995fd8d88d84a395f96f13..f71b2b938b83a36b8bc67758a7cd5a3e0d06c30c 100644 --- a/code/defstruct.lisp +++ b/code/defstruct.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: C -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.22 1991/02/08 13:32:03 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.21 1991/02/03 11:07:06 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.22 1991/02/08 13:32:03 ram Exp $ ;;; ;;; Defstruct structure definition package (Mark II). ;;; Written by Skef Wholey and Rob MacLachlan. diff --git a/code/describe.lisp b/code/describe.lisp index 92f17fc46c59feeb5364f491766d058f80a8cdf4..b51770fcbd3fc63a75480675abe8be3976c2834d 100644 --- a/code/describe.lisp +++ b/code/describe.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (Scott.Fahlman@cs.cmu.edu). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.9 1991/02/08 13:32:09 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This is the describe mechanism for Common Lisp. diff --git a/code/error.lisp b/code/error.lisp index e2ce1415a0ce563bf3d537d1e9a34392aeb795d4..5c6283475f6fef278633e1d915d8466c7720bb0d 100644 --- a/code/error.lisp +++ b/code/error.lisp @@ -1,10 +1,14 @@ ;;; -*- Package: conditions; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/error.lisp,v 1.10 1991/02/08 13:32:12 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This is a condition system for CMU Common Lisp. diff --git a/code/eval.lisp b/code/eval.lisp index 1c23ed3132c9685d7be02ba6538a8e47e00f3044..505da41280b11049dbf0bd01cbeb9dc80518948c 100644 --- a/code/eval.lisp +++ b/code/eval.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.8 1991/02/08 13:32:17 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.7 1990/10/11 18:17:18 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.8 1991/02/08 13:32:17 ram Exp $ ;;; (in-package "LISP") (export '(eval constantp quote proclaim diff --git a/code/exports.lisp b/code/exports.lisp index 33ebb54e2bbd3fa730ad08bbb8155218aed07595..b5b29407ed5849fb0f45553235cd7a7c1bb4bba5 100644 --- a/code/exports.lisp +++ b/code/exports.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: C.Log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.67 1991/02/08 13:32:20 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.66 1991/01/08 23:20:56 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.67 1991/02/08 13:32:20 ram Exp $ ;;; ;;; All the stuff necessary to export various symbols from various packages. ;;; diff --git a/code/extensions.lisp b/code/extensions.lisp index 6c9d433bd15111099368107038c1f6acb69bdce5..5a9b3d6d03d67deb6ad70f3393e9a2d5b2ff0644 100644 --- a/code/extensions.lisp +++ b/code/extensions.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Extensions -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extensions.lisp,v 1.8 1991/02/08 13:32:27 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Spice Lisp extensions to the language. diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp index a26e0fa5c10b9b82e4b36f40c6d9f9f7ee3f8227..d40686477b0e14fd126b36218d2624463d837576 100644 --- a/code/fd-stream.lisp +++ b/code/fd-stream.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: LISP -*- ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.10 1991/02/08 13:32:31 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.9 1991/01/13 00:52:08 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.10 1991/02/08 13:32:31 ram Exp $ ;;; ;;; Streams for UNIX file descriptors. ;;; diff --git a/code/fdefinition.lisp b/code/fdefinition.lisp index a492959b1607e4005c0788535a94be18029149f7..1b2a151951e374036da33eaf7a80d8f790583dd1 100644 --- a/code/fdefinition.lisp +++ b/code/fdefinition.lisp @@ -1,13 +1,17 @@ ;;; -*- Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fdefinition.lisp,v 1.4 1991/02/08 13:32:37 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fdefinition.lisp,v 1.3 1990/09/23 18:05:50 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fdefinition.lisp,v 1.4 1991/02/08 13:32:37 ram Exp $ ;;; ;;; Functions that hack on the global function namespace (primarily ;;; concerned with SETF functions here.) diff --git a/code/filesys.lisp b/code/filesys.lisp index 668e45135d83636aad1dc2d9b3cb753ea54c03ee..23a4a49ea287395369cf1b6d4c5b13ac9b7d4d7e 100644 --- a/code/filesys.lisp +++ b/code/filesys.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ### Some day fix to accept :wild in any pathname component. ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.8 1991/02/08 13:32:39 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.7 1990/11/23 08:36:30 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.8 1991/02/08 13:32:39 ram Exp $ ;;; ;;; Ugly pathname functions for Spice Lisp. ;;; these functions are part of the standard Spice Lisp environment. diff --git a/code/float-trap.lisp b/code/float-trap.lisp index feed75396d9bbbfd955bd95063a3813a8111557c..b0c89f91da70140378d5dcace80a3211b5f8a9fc 100644 --- a/code/float-trap.lisp +++ b/code/float-trap.lisp @@ -1,13 +1,17 @@ ;;; -*- Package: VM -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float-trap.lisp,v 1.5 1991/02/08 13:32:45 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float-trap.lisp,v 1.4 1990/12/07 18:00:37 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float-trap.lisp,v 1.5 1991/02/08 13:32:45 ram Exp $ ;;; ;;; This file contains stuff for controlling floating point traps. It is ;;; IEEE float specific, but should work for pretty much any FPU where the diff --git a/code/float.lisp b/code/float.lisp index facfb13abf5581c9528f182e4de43a16f2dfee3c..14b8ca73e0d0b9a52a21789bc2212e6c273937cc 100644 --- a/code/float.lisp +++ b/code/float.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: KERNEL; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.8 1991/02/08 13:32:47 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.7 1990/12/12 00:01:16 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.8 1991/02/08 13:32:47 ram Exp $ ;;; ;;; This file contains the definitions of float specific number support ;;; (other than irrational stuff, which is in irrat.) There is code in here diff --git a/code/foreign.lisp b/code/foreign.lisp index 14e80d1fba963c0c0aa0fb8c49c3df897a0e68b4..3d6a9fb1d748e319f92e607d50a330fd21aa8959 100644 --- a/code/foreign.lisp +++ b/code/foreign.lisp @@ -1,13 +1,17 @@ ;;; -*- Package: SYSTEM -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.5 1991/02/08 13:32:52 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.4 1991/02/01 01:18:00 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.5 1991/02/08 13:32:52 ram Exp $ ;;; ;;; Load-foreign and support routines. ;;; diff --git a/code/format-time.lisp b/code/format-time.lisp index 730ad179bd92313040f398274d67110a2b3dbcc6..c3670fc497474b0457d01a204ee376d68f45b78c 100644 --- a/code/format-time.lisp +++ b/code/format-time.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Extensions; Log: code.log -*- ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format-time.lisp,v 1.3 1991/02/08 13:32:55 ram Exp $") +;;; ;;; ********************************************************************** ;;; Really slick time printing routines built upon the Common Lisp diff --git a/code/format.lisp b/code/format.lisp index ec2ed2bc73367f98d542f22175cab48fdc746cab..e06ed7d67929888c71837c67dbc2fd8f71bd36dc 100644 --- a/code/format.lisp +++ b/code/format.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.7 1991/02/08 13:32:58 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to implement FORMAT for Spice Lisp. diff --git a/code/globals.lisp b/code/globals.lisp index 886dae6cbeebb51c8575e1ef53b3ac168847fee1..e696226f29299ae3eab2afcf665ab29a8ff8460d 100644 --- a/code/globals.lisp +++ b/code/globals.lisp @@ -1,10 +1,14 @@ ;;; -*- Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/globals.lisp,v 1.5 1991/02/08 13:33:06 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains special proclamations for variables that are diff --git a/code/hash.lisp b/code/hash.lisp index 32cff70e2a4f27c4a4cf2a28c3a2e6c79b9493fc..7fd3dba9688929600d217d8e40d1066c0097616d 100644 --- a/code/hash.lisp +++ b/code/hash.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.9 1991/02/08 13:33:08 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Hashing and hash table functions for Spice Lisp. diff --git a/code/internet.lisp b/code/internet.lisp index 194e78d488abd3dbd784772051b2ad8b88243345..383401c66ac5bf925efc7a398c18cd32a2c7a297 100644 --- a/code/internet.lisp +++ b/code/internet.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: extensions -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.4 1991/02/08 13:33:30 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains an interface to internet domain sockets. diff --git a/code/interr.lisp b/code/interr.lisp index c2f52412e752860ec00d2fd012815bac99e0aa04..390c409c81769e05f27740811534cadcdb25146f 100644 --- a/code/interr.lisp +++ b/code/interr.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: KERNEL -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.16 1991/02/08 13:33:35 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.15 1990/12/11 15:18:29 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.16 1991/02/08 13:33:35 ram Exp $ ;;; ;;; Functions and macros to define and deal with internal errors (i.e. ;;; problems that can be signaled from assembler code). diff --git a/code/irrat.lisp b/code/irrat.lisp index fa185bfe18f01289647fb6dbf2ecbbccc263cb84..94f1400bf706bba260c865675c1fd5b2170573b2 100644 --- a/code/irrat.lisp +++ b/code/irrat.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: KERNEL; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/irrat.lisp,v 1.7 1991/02/08 13:33:39 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/irrat.lisp,v 1.6 1991/01/03 13:16:27 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/irrat.lisp,v 1.7 1991/02/08 13:33:39 ram Exp $ ;;; ;;; This file contains all the irrational functions. Actually, most of the ;;; work is done by calling out to C... diff --git a/code/kernel.lisp b/code/kernel.lisp index 55e7c698b1181cb9093be6cbf986a39b5a65bc8f..f0902e61bc42754df989d6d4fc1bce101b07df08 100644 --- a/code/kernel.lisp +++ b/code/kernel.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: KERNEL -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.5 1991/02/08 13:33:42 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.4 1990/11/10 18:35:32 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.5 1991/02/08 13:33:42 ram Exp $ ;;; (in-package "KERNEL") diff --git a/code/lispinit.lisp b/code/lispinit.lisp index 2fe7b801104138b7609fc10dc14ac745b37e86da..cff987d67adc74f683e13f44fab96f64c7a1b71d 100644 --- a/code/lispinit.lisp +++ b/code/lispinit.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.20 1991/02/08 13:33:44 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.19 1991/01/31 02:09:17 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.20 1991/02/08 13:33:44 ram Exp $ ;;; ;;; Initialization stuff for CMU Common Lisp, plus some other random functions ;;; that we don't have any better place for. diff --git a/code/list.lisp b/code/list.lisp index 038e81a77b8dc2a78828f4d9b74c2f4d7fc948d1..1c77bf5ad188c4c9cfdea0acfb1fc767f950b4ed 100644 --- a/code/list.lisp +++ b/code/list.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/list.lisp,v 1.6 1991/02/08 13:33:49 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to implement lists for Spice Lisp. diff --git a/code/load.lisp b/code/load.lisp index 3e3852676eeade52b423705842a73a35d6791d29..dbb3002969bca13966aa59aa8c8cd94f8ccaa470 100644 --- a/code/load.lisp +++ b/code/load.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.25 1991/02/08 13:33:54 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.24 1991/01/25 21:44:44 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.25 1991/02/08 13:33:54 ram Exp $ ;;; ;;; Loader for Spice Lisp. ;;; Written by Skef Wholey and Rob MacLachlan. diff --git a/code/machdef.lisp b/code/machdef.lisp index 274d2bc420efe93568c8129c10e4273cfd27fb29..9f8766ff615ff96a1364984ec073835304179f35 100644 --- a/code/machdef.lisp +++ b/code/machdef.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Mach -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/machdef.lisp,v 1.5 1991/02/08 13:34:05 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Record definitions needed for the interface to Mach. diff --git a/code/macros.lisp b/code/macros.lisp index 4ff1b20ecf4163cf0fac3bf3f23f28bc0bc41414..787af0e09d45e6f8c68876685425e10069c75ece 100644 --- a/code/macros.lisp +++ b/code/macros.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.20 1991/02/08 13:34:07 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.19 1991/01/31 17:31:23 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.20 1991/02/08 13:34:07 ram Exp $ ;;; ;;; This file contains the macros that are part of the standard ;;; Spice Lisp environment. diff --git a/code/mipsstrops.lisp b/code/mipsstrops.lisp index 97ceae414fd688d20a3634719cb1ebadc9448ce6..e6e08e1a64d151b9fdd739bf17fc26a390443e5d 100644 --- a/code/mipsstrops.lisp +++ b/code/mipsstrops.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: Code.Log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/mipsstrops.lisp,v 1.5 1991/02/08 13:34:14 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; String hacking functions that are stubs for things that might diff --git a/code/misc.lisp b/code/misc.lisp index a91f8ab099139b7c9e4dd02ddc8400d177209eb9..44121be2cbfb0c88274f2907b5e81d93134f70bd 100644 --- a/code/misc.lisp +++ b/code/misc.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.8 1991/02/08 13:34:17 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.7 1991/02/03 11:20:11 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/misc.lisp,v 1.8 1991/02/08 13:34:17 ram Exp $ ;;; ;;; Assorted miscellaneous functions for Spice Lisp. ;;; diff --git a/code/numbers.lisp b/code/numbers.lisp index 5aa9b996ea333f648a0dda3aaa476de677e9336d..563c481e89da062b1b50a79627b858225a456bfa 100644 --- a/code/numbers.lisp +++ b/code/numbers.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: KERNEL; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.17 1991/02/08 13:34:19 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.16 1990/12/12 18:14:58 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/numbers.lisp,v 1.17 1991/02/08 13:34:19 ram Exp $ ;;; ;;; This file contains the definitions of most number functions. ;;; diff --git a/code/old-loop.lisp b/code/old-loop.lisp index eab20cccea142324f3226e2dcaa97049a840cc6d..e3de0c32f6441aeac51b85425f58697433928cfc 100644 --- a/code/old-loop.lisp +++ b/code/old-loop.lisp @@ -2,12 +2,16 @@ ;;; ;;; ********************************************************************** ;;; This code was written as part of the CMU Common Lisp project at -;;; Carnegie Mellon University, and has been placed in the public -;;; domain. If you want to use this code or any part of CMU Common -;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU) +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/old-loop.lisp,v 1.6 1991/02/08 13:34:00 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/old-loop.lisp,v 1.5 1990/11/25 08:15:31 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/old-loop.lisp,v 1.6 1991/02/08 13:34:00 ram Exp $ ;;; ;;; Loop facility, written by William Lott. ;;; diff --git a/code/package.lisp b/code/package.lisp index 6b76e54cb1329254db9812864233516a1ebb35d5..88508ab96411e03ee849d76986193a04bfba30f5 100644 --- a/code/package.lisp +++ b/code/package.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.9 1991/02/08 13:34:25 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Package stuff and stuff like that. diff --git a/code/parse-time.lisp b/code/parse-time.lisp index 50db34cc69fa6846915a35b18423b7104a4be9fc..52b2011a91ec834fb7c2d18e4c1f22b3aa4db102 100644 --- a/code/parse-time.lisp +++ b/code/parse-time.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Extensions; Log: code.log -*- ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/parse-time.lisp,v 1.2 1991/02/08 13:34:32 ram Exp $") +;;; ;;; ********************************************************************** ;;; Parsing routines for time and date strings. Parse-time returns the diff --git a/code/pmax-disassem.lisp b/code/pmax-disassem.lisp index 2ab6405a6986fcc8d0708c1a3e98cd9cf83e3ccb..02c5701c07ebbd64efc5dca4f958a351c0c2d2f0 100644 --- a/code/pmax-disassem.lisp +++ b/code/pmax-disassem.lisp @@ -1,6 +1,15 @@ ;;; -*- Mode: Lisp; Package: MIPS -*- -;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-disassem.lisp,v 1.16 1990/11/18 09:00:24 wlott Exp $ +;;; +;;; ********************************************************************** +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-disassem.lisp,v 1.17 1991/02/08 13:34:36 ram Exp $") +;;; +;;; ********************************************************************** ;;; ;;; A simple dissambler for the MIPS R2000. ;;; diff --git a/code/pmax-machdef.lisp b/code/pmax-machdef.lisp index 6477c8ce5c6697960ee69c1c1470a2fee98de063..1e9536445049c425c5851dc478466c70703aa404 100644 --- a/code/pmax-machdef.lisp +++ b/code/pmax-machdef.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Mach -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-machdef.lisp,v 1.2 1991/02/08 13:34:41 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Record definitions needed for the interface to Mach. diff --git a/code/pmax-vm.lisp b/code/pmax-vm.lisp index 14ea981357b8edfab59edbf8434dc1af95f35f06..cbf2c1de27b7230de901a0d36f6880e61094f75e 100644 --- a/code/pmax-vm.lisp +++ b/code/pmax-vm.lisp @@ -1,13 +1,17 @@ ;;; -*- Package: MIPS -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-vm.lisp,v 1.7 1991/02/08 13:34:42 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-vm.lisp,v 1.6 1991/02/03 11:19:52 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pmax-vm.lisp,v 1.7 1991/02/08 13:34:42 ram Exp $ ;;; ;;; This file contains the PMAX specific runtime stuff. ;;; diff --git a/code/pprint.lisp b/code/pprint.lisp index 0ad74719f9212b42fae87477ce7d64b81b887288..6e79a1f5d1bee21945166b193fb2387e76a62426 100644 --- a/code/pprint.lisp +++ b/code/pprint.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.3 1991/02/08 13:34:45 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; CMU Common Lisp pretty printer. diff --git a/code/pred.lisp b/code/pred.lisp index dadbece8c2a2d48bf6013aee84c866b841f55e6b..c6ec81d5759e1ec4c963e2c041905f747e2196a4 100644 --- a/code/pred.lisp +++ b/code/pred.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: LISP; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.16 1991/02/08 13:34:47 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.15 1990/10/27 15:27:46 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.16 1991/02/08 13:34:47 ram Exp $ ;;; ;;; Predicate functions for CMU Common Lisp. ;;; diff --git a/code/print.lisp b/code/print.lisp index de4dc2104a2bd4fcf6589939e432b9ca40b0a522..fc093cba571a3d47de55848c8b1736a9ff348a42 100644 --- a/code/print.lisp +++ b/code/print.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.19 1991/02/08 13:34:51 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.18 1990/11/29 02:32:27 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.19 1991/02/08 13:34:51 ram Exp $ ;;; ;;; CMU Common Lisp printer. ;;; diff --git a/code/purify.lisp b/code/purify.lisp index a474412277b03611e0e370a55af1f6b4aa33dc4c..1f4d17a69aff87c98a1962b8d7206924cbf8b379 100644 --- a/code/purify.lisp +++ b/code/purify.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/purify.lisp,v 1.11 1991/02/08 13:35:00 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Storage purifier for Spice Lisp. diff --git a/code/query.lisp b/code/query.lisp index c5ca1b451f28a507f55a0bd2662f3f1edfd10c29..5aa0e0846867b74e7383aabab63b9039edc09293 100644 --- a/code/query.lisp +++ b/code/query.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/query.lisp,v 1.2 1991/02/08 13:35:02 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Querying the user. diff --git a/code/rand.lisp b/code/rand.lisp index 34ca6a70c71863863eee978dfbc93f1058e726e8..01b806f8a4a46cf5b1729714457f0adc7ca8d795 100644 --- a/code/rand.lisp +++ b/code/rand.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/rand.lisp,v 1.3 1991/02/08 13:35:04 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to random number functions for Spice Lisp diff --git a/code/reader.lisp b/code/reader.lisp index 8037877ef352940518bc9876e239e797354cf050..2c86b2cca035d4e47526189de0918cf68b519e6a 100644 --- a/code/reader.lisp +++ b/code/reader.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.5 1991/02/08 13:35:06 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.4 1990/09/06 19:38:45 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/reader.lisp,v 1.5 1991/02/08 13:35:06 ram Exp $ ;;; ;;; Spice Lisp Reader ;;; Written by David Dill diff --git a/code/remote.lisp b/code/remote.lisp index fe1cb60608e2952381b3715c95a2bc3ca71cc01a..48592226c84deb9c28a3f46df8c3ccf7de6b9dd3 100644 --- a/code/remote.lisp +++ b/code/remote.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: wire -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/remote.lisp,v 1.2 1991/02/08 13:35:13 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file implements a simple remote procedure call mechanism on top diff --git a/code/run-program.lisp b/code/run-program.lisp index feb3956ec9034f5f8f0eba9b07482f2806ca27a7..d5358778a2cf8731e1572871b3dac9c85c062d05 100644 --- a/code/run-program.lisp +++ b/code/run-program.lisp @@ -1,10 +1,14 @@ ;;; -*- Package: Extensions; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/run-program.lisp,v 1.3 1991/02/08 13:35:16 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; RUN-PROGRAM and friends. Factilty for running unix programs from inside diff --git a/code/save.lisp b/code/save.lisp index 7ca8639d9103a78e61917f484e4adae86f899e35..36d6d5bc2d91a7a261ff5996793022d42b8bf4df 100644 --- a/code/save.lisp +++ b/code/save.lisp @@ -1,14 +1,17 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; Spice Lisp is currently incomplete and under active development. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.5 1991/02/08 13:35:22 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.4 1990/10/03 15:55:58 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.5 1991/02/08 13:35:22 ram Exp $ ;;; ;;; Dump the current lisp image into a core file. All the real work is done ;;; be C. diff --git a/code/search-list.lisp b/code/search-list.lisp index 1fc6e541fc890465d2514849121c67ae697e9d4c..8c6ccdf8071919dee07ad1edb70aa87c90df9eef 100644 --- a/code/search-list.lisp +++ b/code/search-list.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/search-list.lisp,v 1.3 1991/02/08 13:35:25 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Logical name (search list) hackery for Lisp'ers. diff --git a/code/seq.lisp b/code/seq.lisp index 65b2acaa44c7303c16151d249c208f86e660cfd6..007e94a5b10f28befc5249d4e959c17da29da5f2 100644 --- a/code/seq.lisp +++ b/code/seq.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/seq.lisp,v 1.6 1991/02/08 13:35:27 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to implement generic sequences for Spice Lisp. diff --git a/code/serve-event.lisp b/code/serve-event.lisp index 61df51fc43492547edef252c5d5d3464d5b6fa45..624b7a8c8ad885c6d031d6018f4d0b8bb189a3ab 100644 --- a/code/serve-event.lisp +++ b/code/serve-event.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: LISP -*- ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/serve-event.lisp,v 1.7 1991/02/08 13:35:36 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; SYSTEM:SERVE-EVENT, now in it's own file. diff --git a/code/sharpm.lisp b/code/sharpm.lisp index 7a0746a3158aa33a33e5249c35e59a2a03bb3002..79b8b631359be13c470473a7f4396e579df1cc59 100644 --- a/code/sharpm.lisp +++ b/code/sharpm.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sharpm.lisp,v 1.4 1991/02/08 13:35:39 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Spice Lisp Interim Sharp Macro diff --git a/code/signal.lisp b/code/signal.lisp index eaa76801583e567767a637390ddb079bcfeb598e..55ff24ce8e7acdd2c3376811b5bd6fa17f4dc813 100644 --- a/code/signal.lisp +++ b/code/signal.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: MACH -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.12 1991/02/08 13:35:43 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.11 1990/11/28 09:50:43 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.12 1991/02/08 13:35:43 ram Exp $ ;;; ;;; Code for handling UNIX signals. ;;; diff --git a/code/sort.lisp b/code/sort.lisp index c1183a566d3e73f81d982c8bae986060160b1ad9..10c9e55bf8ff1777e9db78bb486b7b25c3439622 100644 --- a/code/sort.lisp +++ b/code/sort.lisp @@ -1,11 +1,15 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). -;;; ********************************************************************** +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sort.lisp,v 1.2 1991/02/08 13:35:46 ram Exp $") +;;; +;;; ********************************************************************** ;;; ;;; Sort functions for Spice Lisp ;;; these functions are part of the standard spice lisp environment. diff --git a/code/sparc-machdef.lisp b/code/sparc-machdef.lisp index 8b8e96b5aa355ce3c10007dc2c08a4bff13ee027..5baee104cc36a704575350b1034e59440561a0c7 100644 --- a/code/sparc-machdef.lisp +++ b/code/sparc-machdef.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Mach -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-machdef.lisp,v 1.2 1991/02/08 13:35:49 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Record definitions needed for the interface to Mach. diff --git a/code/sparc-vm.lisp b/code/sparc-vm.lisp index ea7746a26ac4fb84b211f0f700466a757fe2f644..705b7345cf3197e12d405b4608e742f32936d40d 100644 --- a/code/sparc-vm.lisp +++ b/code/sparc-vm.lisp @@ -1,13 +1,17 @@ ;;; -*- Package: SPARC -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-vm.lisp,v 1.8 1991/02/08 13:35:51 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-vm.lisp,v 1.7 1991/02/03 11:20:08 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-vm.lisp,v 1.8 1991/02/08 13:35:51 ram Exp $ ;;; ;;; This file contains the SPARC specific runtime stuff. ;;; diff --git a/code/stream.lisp b/code/stream.lisp index 6137397172d04b314e9fb638018b1040c2bd6dce..359ae11ffe1b2b94336b43eea5dd58340d20635e 100644 --- a/code/stream.lisp +++ b/code/stream.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.9 1991/02/08 13:35:53 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.8 1991/01/13 01:34:20 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.9 1991/02/08 13:35:53 ram Exp $ ;;; ;;; Stream functions for Spice Lisp. ;;; Written by Skef Wholey and Rob MacLachlan. diff --git a/code/string.lisp b/code/string.lisp index 94b214e00ab4d321ee3663699496b05afb962fe5..18205bff326acbc2f1f7ae0c20ec1e775224ede8 100644 --- a/code/string.lisp +++ b/code/string.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/string.lisp,v 1.3 1991/02/08 13:35:59 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Functions to implement strings for Spice Lisp diff --git a/code/struct.lisp b/code/struct.lisp index f6042f268ca9d21d4ce20338a3e93897f80a8671..5424f48f2cb89227cb42012f22fcf8fa83a0ad8e 100644 --- a/code/struct.lisp +++ b/code/struct.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/struct.lisp,v 1.8 1991/02/08 13:36:03 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains structure definitions that need to be compiled early diff --git a/code/symbol.lisp b/code/symbol.lisp index 0dddd5ecf31b847a3bbf9f8af431dc9d7ae3c3b7..f276cf1c588e086ef4d5229ab030ddef91fc3642 100644 --- a/code/symbol.lisp +++ b/code/symbol.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: Lisp -*- ;;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/symbol.lisp,v 1.5 1991/02/08 13:36:05 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Symbol manipulating functions for Spice Lisp. diff --git a/code/sysmacs.lisp b/code/sysmacs.lisp index 9cee05b77c2a0f069dc8024f14effd5f28718308..3ad3be79735368c4497a30b909735ca284247ae5 100644 --- a/code/sysmacs.lisp +++ b/code/sysmacs.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sysmacs.lisp,v 1.7 1991/02/08 13:36:22 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Miscellaneous system hacking macros. diff --git a/code/time.lisp b/code/time.lisp index 815d46edf5e371f174f0e165b23f4778abcea84c..5d60c1b7e4d8bc0300363de118cbb5ad637b5269 100644 --- a/code/time.lisp +++ b/code/time.lisp @@ -1,10 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/time.lisp,v 1.6 1991/02/08 13:36:25 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains the definitions for the Spice Lisp time functions. diff --git a/code/tty-inspect.lisp b/code/tty-inspect.lisp index 7c39e3376b931797cc85184becfa2e4546629c57..bd0d52b3a12c70b5392d36ff59519325e4367267 100644 --- a/code/tty-inspect.lisp +++ b/code/tty-inspect.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: inspect -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.7 1991/02/08 13:36:32 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Tty interface for INSPECT. diff --git a/code/type-boot.lisp b/code/type-boot.lisp index 5d898005369542e43d327bb5accd3e77ada3cce3..4c632dd7189383f320fc44ab4c91742062c0b58e 100644 --- a/code/type-boot.lisp +++ b/code/type-boot.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: C -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type-boot.lisp,v 1.6 1991/02/08 13:36:35 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; Some initialization hacks that we need to get the type system started up diff --git a/code/vm.lisp b/code/vm.lisp index 901307a1694d672bf6c318ef06193da63ec2dde8..b424e782b627fe1394b970d5d540a8d6aad1e5cf 100644 --- a/code/vm.lisp +++ b/code/vm.lisp @@ -1,13 +1,17 @@ ;;; -*- Log: code.log; Package: MACH -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/vm.lisp,v 1.2 1991/02/08 13:36:37 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/vm.lisp,v 1.1 1990/10/13 16:01:42 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/vm.lisp,v 1.2 1991/02/08 13:36:37 ram Exp $ ;;; ;;; This file contains stubs for interfacing MACH's vm primitives. ;;; diff --git a/code/weak.lisp b/code/weak.lisp index 0eec447c15746563887dd1fb4b67e4738a989da1..67e86647ee0e52954c68d3935a5c6072b16bd96d 100644 --- a/code/weak.lisp +++ b/code/weak.lisp @@ -1,13 +1,17 @@ ;;; -*- Mode: Lisp; Package: EXTENSIONS; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (Scott.Fahlman@CS.CMU.EDU). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/weak.lisp,v 1.2 1991/02/08 13:36:39 ram Exp $") +;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/weak.lisp,v 1.1 1990/06/04 18:51:21 ch Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/weak.lisp,v 1.2 1991/02/08 13:36:39 ram Exp $ ;;; ;;; Weak Pointer Support. ;;; diff --git a/code/wire.lisp b/code/wire.lisp index e65614bbea254236232e580fa0bac7c86e8dde06..d47ee55d6722c4b9c7880d2687f915967a1b08ee 100644 --- a/code/wire.lisp +++ b/code/wire.lisp @@ -1,10 +1,14 @@ ;;; -*- Log: code.log; Package: wire -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/wire.lisp,v 1.3 1991/02/08 13:36:40 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file contains an interface to internet domain sockets. diff --git a/tools/worldcom.lisp b/tools/worldcom.lisp index d62a2c1da822d59640b95455df56d2d4d71858a2..745a857a230593eee09f3970f2389ab70b300411 100644 --- a/tools/worldcom.lisp +++ b/tools/worldcom.lisp @@ -1,11 +1,14 @@ ;;; -*- Package: User; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; Spice Lisp is currently incomplete and under active development. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.14 1991/02/08 13:36:47 ram Exp $") +;;; ;;; ********************************************************************** (in-package "USER") diff --git a/tools/worldload.lisp b/tools/worldload.lisp index d561d3c44e092ac7e6f23531cdfd8bcd6b20e3f3..e89809e70c74036422d5e83fd56fccaa6bcb8d49 100644 --- a/tools/worldload.lisp +++ b/tools/worldload.lisp @@ -1,11 +1,14 @@ ;;; -*- Mode: Lisp; Package: Lisp; Log: code.log -*- ;;; ;;; ********************************************************************** -;;; This code was written as part of the Spice Lisp project at -;;; Carnegie-Mellon University, and has been placed in the public domain. -;;; Spice Lisp is currently incomplete and under active development. -;;; If you want to use this code or any part of Spice Lisp, please contact -;;; Scott Fahlman (FAHLMAN@CMUC). +;;; This code was written as part of the CMU Common Lisp project at +;;; Carnegie Mellon University, and has been placed in the public domain. +;;; If you want to use this code or any part of CMU Common Lisp, please contact +;;; Scott Fahlman or slisp-group@cs.cmu.edu. +;;; +(ext:file-comment + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.19 1991/02/08 13:36:49 ram Exp $") +;;; ;;; ********************************************************************** ;;; ;;; This file loads the parts of the system that aren't cold loaded and saves