- Mar 13, 2001
- Mar 12, 2001
-
-
pw authored
is part of the name component.
-
- Mar 11, 2001
- Mar 09, 2001
-
-
pw authored
-
- Mar 08, 2001
- Mar 05, 2001
-
-
pw authored
load-logical-pathname-translations.
-
- Mar 04, 2001
- Mar 03, 2001
- Mar 01, 2001
-
-
pw authored
-
- Feb 23, 2001
- Feb 22, 2001
-
-
pw authored
I've appended the necessary mods inorder to make the autoloading of logical pathname translations to work. This includes fixing load-logical-pathname-translations to work the way the manual says it does.
-
pw authored
-
pw authored
A couple of typo corrections; fix main() in lisp.c (main returns int, not void!); stop ACCEPT-TCP-CONNECTION blocking other processes.
-
dtc authored
version, reducing the risk of confusion with commonly used unix filenames.
-
- Feb 21, 2001
-
-
dtc authored
-
- Feb 20, 2001
-
-
dtc authored
two register args popped by call_into_c, avoiding potential stack corruption. Noted by Daniel Barlow.
-
- Feb 17, 2001
-
-
dtc authored
upper bits that can not be encoded using BLA.
-
- Feb 16, 2001
-
-
dtc authored
assumes these exist.
-
- Feb 11, 2001
- Jan 28, 2001
-
-
dtc authored
From Pierre R. Mai.
-
- Jan 27, 2001
-
-
pw authored
when compiling a method containing a make-instance call. Test case: ~~~~~~~~~~~~~~~~~~~~~~~~~ (defclass some-class () ((slot :initarg :slot))) ;; This generates compiler warnings about unknown function ;; Warning: Undefined function: ;; PCL::|MAKE-INSTANCE COMMON-LISP-USER::SOME-CLASS (:SLOT) NIL| ;; which goes away once the form is loaded. (defmethod fooey (x) (declare (ignore x) #+nil (optimize (inhibit-warnings 3))) ; this quiets things down (make-instance 'some-class)) #| In: DEFMETHOD FOOEY (T) (DEFMETHOD FOOEY (X) (MAKE-INSTANCE 'SOME-CLASS :SLOT X)) --> BLOCK MACROLET PCL::FAST-LEXICAL-METHOD-FUNCTIONS --> PCL::BIND-FAST-LEXICAL-METHOD-MACROS MACROLET --> PCL::BIND-LEXICAL-METHOD-FUNCTIONS LET PCL::BIND-ARGS LET* BLOCK ==> (PCL::|MAKE-INSTANCE COMMON-LISP-USER::SOME-CLASS (:SLOT) NIL| 'SOME-CLASS (LIST :SLOT X)) Warning: Undefined function: PCL::|MAKE-INSTANCE COMMON-LISP-USER::SOME-CLASS (:SLOT) NIL| Warning: This function is undefined: PCL::|MAKE-INSTANCE COMMON-LISP-USER::SOME-CLASS (:SLOT) NIL| |#
-