1.0.0.29:
authorChristophe Rhodes <csr21@cantab.net>
Thu, 14 Dec 2006 16:15:28 +0000 (16:15 +0000)
committerChristophe Rhodes <csr21@cantab.net>
Thu, 14 Dec 2006 16:15:28 +0000 (16:15 +0000)
Whitespace

src/pcl/cache.lisp
version.lisp-expr

index 73b60fd..129ebbf 100644 (file)
          (declare (fixnum old-count))
          (setf (cache-vector-lock-count ,cache-vector)
                (if (= old-count most-positive-fixnum)
-                   1 
+                   1
                    (1+ old-count)))))))
 
 (deftype field-type ()
   '(mod #.layout-clos-hash-length))
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
-  (declaim (ftype (function (fixnum) (values (and unsigned-byte fixnum) &optional)) 
+  (declaim (ftype (function (fixnum) (values (and unsigned-byte fixnum) &optional))
                   power-of-two-ceiling))
   (defun power-of-two-ceiling (x)
     ;; (expt 2 (ceiling (log x 2)))
 (defun compute-primary-cache-location (field mask wrappers)
   (declare (type field-type field) (fixnum mask))
   (if (not (listp wrappers))
-      (logand mask 
+      (logand mask
               (the fixnum (wrapper-cache-number-vector-ref wrappers field)))
-      (let ((location 0) 
+      (let ((location 0)
             (i 0))
         (declare (fixnum location i))
         (dolist (wrapper wrappers)
     (dotimes-fixnum (i nkeys)
       (let* ((wrapper (cache-vector-ref cache-vector (+ i from-location)))
              (wcn (wrapper-cache-number-vector-ref wrapper field)))
-        (declare (fixnum wcn))        
+        (declare (fixnum wcn))
         (incf result wcn))
       (when (and (not (zerop i))
                  (zerop (mod i wrapper-cache-number-adds-ok)))
 
 (defun make-dfun-lambda-list (metatypes applyp)
   (let ((required (make-dfun-required-args metatypes)))
-    (if applyp 
+    (if applyp
         (nconc required
                ;; Use &MORE arguments to avoid consing up an &REST list
                ;; that we might not need at all. See MAKE-EMF-CALL and
 
 (defun make-dlap-lambda-list (metatypes applyp)
   (let* ((required (make-dfun-required-args metatypes))
-         (lambda-list (if applyp 
+         (lambda-list (if applyp
                           (append required '(&more .more-context. .more-count.))
                           required)))
     ;; Return the full lambda list, the required arguments, a form
index 44c28e5..81a6319 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.0.28"
+"1.0.0.29"