home *** CD-ROM | disk | FTP | other *** search
- (in-package :ccl)
- ;;;;;;;;;;
- ;;various patches that will eventually be standard
-
- (export '(hset pset
- ))
-
- ;;;;;;;;;;
-
- (eval-when (:compile-toplevel :load-toplevel :execute)
-
- (defmacro hset (pointer accessor thing)
- `(rset ,pointer ,accessor ,thing :storage :handle))
-
- (defmacro pset (pointer accessor thing)
- `(rset ,pointer ,accessor ,thing :storage :pointer))
-
- )
-
- ;;;;;;;;;;
-
- (load "oou-patches:focus-view-patch")
- (load "oou-patches:call-with-focus-view-patch")
-
- ;;;;;;;;;;
-
- ;;;;;;;;;;
-
-
-
-