1
0
mirror of synced 2026-02-02 23:21:17 +00:00
Files
Interlisp.medley/lispcore/clos/2.0/fixup.lisp
Larry Masinter 6a758f1aa9 make medley repo match Ron's dropbox
this will give us a stable point on which we can make changes in coordination via git.
NO MORE USING A SHARED DROPBOX
Last major commit wihout a PR against a Medley issue.
2020-10-29 15:31:53 -07:00

16 lines
342 B
Common Lisp

;;;-*- Package: CLOS; Syntax: Common-Lisp; Base: 10 -*-
;;;. Copyright (c) 1991 by Venue
(in-package "CLOS")
(eval-when (compile load eval)
(fix-early-generic-functions)
(setq *boot-state* 'complete))
(defun print-std-instance (instance stream depth)
(declare (ignore depth))
(print-object instance stream))