chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
16f4af9
)
Updated for SBCL 0.8.21
author
espen
<espen>
Sun, 17 Apr 2005 21:44:27 +0000
(21:44 +0000)
committer
espen
<espen>
Sun, 17 Apr 2005 21:44:27 +0000
(21:44 +0000)
glib/glib.lisp
patch
|
blob
|
blame
|
history
diff --git
a/glib/glib.lisp
b/glib/glib.lisp
index 630d3aeda5f9b5a775891ea690ff6078008f9830..d82d52299469eded830a568f560791fdb32fc242 100644
(file)
--- a/
glib/glib.lisp
+++ b/
glib/glib.lisp
@@
-15,7
+15,7
@@
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-;; $Id: glib.lisp,v 1.2
7 2005/02/14 00:44:26
espen Exp $
+;; $Id: glib.lisp,v 1.2
8 2005/04/17 21:44:27
espen Exp $
(in-package "GLIB")
(in-package "GLIB")
@@
-38,9
+38,8
@@
(defbinding (deallocate-memory "g_free") () nil
;; (declare (ignore address)))
(defun copy-memory (from length &optional (to (allocate-memory length)))
;; (declare (ignore address)))
(defun copy-memory (from length &optional (to (allocate-memory length)))
- (;#+cmu kernel:system-area-copy
- ;#+sbcl sb-impl::system-area-copy
- system-area-copy from 0 to 0 (* 8 length))
+ #+cmu(system-area-copy from 0 to 0 (* 8 length))
+ #+sbcl(system-area-ub8-copy from 0 to 0 length)
to)
to)