r9046: fix duplicate macro
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 17 Apr 2004 18:26:36 +0000 (18:26 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 17 Apr 2004 18:26:36 +0000 (18:26 +0000)
debian/changelog
src/objects.lisp

index 6162e82f52fbdcb2b7fcff2549b66c7819440908..6c502e67f244f326d99b0f12509cf7ce4b49eb6f 100644 (file)
@@ -1,3 +1,9 @@
+cl-uffi (1.4.12-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 17 Apr 2004 12:26:00 -0600
+
 cl-uffi (1.4.11-1) unstable; urgency=low
 
   * New upstream
index 42ab3fc334fe0b3266fe477f46a19df2dcdcf3f6..f154990cef415047cc7aadb1cf46aed85b0d5961 100644 (file)
@@ -101,12 +101,6 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
   #+mcl `(ccl:%int-to-ptr ,addr)
   )
 
-(defmacro pointer-address (ptr)
-  #+allegro ptr
-  #+(or cmu scl) `(system:sap-int (alien:alien-sap ,ptr))
-  #+sbcl `(sb-sys:sap-int (sb-alien:alien-sap ,ptr))
-  #+lispworks `(fli:pointer-address ,ptr)
-  #+mcl `(ccl:%ptr-to-int ,ptr))
 
 (defmacro char-array-to-pointer (obj)
   #+(or cmu scl) `(alien:cast ,obj (* (alien:unsigned 8)))