Custom types are now re-registered when a saved image is loaded
authorespen <espen>
Tue, 18 Apr 2006 11:42:20 +0000 (11:42 +0000)
committerespen <espen>
Tue, 18 Apr 2006 11:42:20 +0000 (11:42 +0000)
glib/gtype.lisp

index 9021bce..77cd094 100644 (file)
@@ -20,7 +20,7 @@
 ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-;; $Id: gtype.lisp,v 1.50 2006-04-10 17:34:45 espen Exp $
+;; $Id: gtype.lisp,v 1.51 2006-04-18 11:42:20 espen Exp $
 
 (in-package "GLIB")
 
            (register-type (car type) (cdr type)))
        *registered-types*)
   (mapc #'(lambda (type) 
+               (apply #'register-new-type type))
+       *registered-static-types*)
+  (mapc #'(lambda (type) 
            (register-type-alias (car type) (cdr type)))
        *registered-type-aliases*))