From 5ed197dbe7dabf2e4d734f938ef85157a8379b08 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 16 Dec 1991 19:45:34 +0000 Subject: [PATCH] Annotate c types as just-dump-it-normally. --- code/c-call.lisp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/c-call.lisp b/code/c-call.lisp index 8087be927..f3f152e17 100644 --- a/code/c-call.lisp +++ b/code/c-call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.6 1991/02/28 20:50:12 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.7 1991/12/16 19:45:34 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -38,7 +38,8 @@ ;;; The C-Type structure is used to represent aspects of C data representations ;;; that aren't directly implemented by Aliens. ;;; -(defstruct c-type +(defstruct (c-type + (:make-load-form-fun :just-dump-it-normally)) ;; ;; A form which is a printable representation of this type. description @@ -78,7 +79,8 @@ ;;; be allocated to the field than are actually necessary to hold a value of ;;; that type. ;;; -(defstruct field-info +(defstruct (field-info + (:make-load-form-fun :just-dump-it-normally)) ;; ;; The symbol name of this field. (name nil :type symbol) -- GitLab