r10396: 2005-04-12 Kevin Rosenberg (kevin@rosenberg.net)
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 13 Apr 2005 18:43:34 +0000 (18:43 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 13 Apr 2005 18:43:34 +0000 (18:43 +0000)
        * Version 1.4.37
        * src/strings.lisp: Fix variable name

ChangeLog
debian/changelog
src/strings.lisp

index 89926037296b8ae930f8b14b8acd89a9cf794cef..dbca9fdd4b369bd1b34fccbd64e4d0264e838eb0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-12 Kevin Rosenberg (kevin@rosenberg.net)
+       * Version 1.4.37
+       * src/strings.lisp: Fix variable name
+       
 2005-04-04 Kevin Rosenberg (kevin@rosenberg.net)
        * src/strings.lisp, src/aggregates.lisp: Support change in SBCL copy
        function [Thanks for Nathan Froyd and Zach Beane]
index ecd11071d27164fb3de80d0fc1c4978e1ca6b251..f81d87cfddcbd3e5d17020095c0b61daa76098a5 100644 (file)
@@ -1,3 +1,9 @@
+cl-uffi (1.4.37-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 13 Apr 2005 12:42:41 -0600
+
 cl-uffi (1.4.36-1) unstable; urgency=low
 
   * New upstream
index 2e7ff960d794dfd6231e1bba718460b59851528d..684b0351ca108948b00ea5426a4f16407dc1a30b 100644 (file)
@@ -338,8 +338,8 @@ that LW/CMU automatically converts strings from c-calls."
     (t
      (let ((result (make-string length)))
        ;; this will not work in sb-unicode
-       (funcall *system-copy-fn* sap 0 result *system-copy-offset*
-               (* length *system-copy-multiplier*))
+       (funcall *system-copy-fn* sap 0 result +system-copy-offset+
+               (* length +system-copy-multiplier+))
        result)))))