Skip to content
Snippets Groups Projects
Commit 0468d115 authored by ram's avatar ram
Browse files

Bind *unparse-function-type-simplify* to T when getting the type specifier for

:type-predicate, since we don't want to check against complex function type
specs.
parent 042c6531
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.53 1993/05/11 21:15:58 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.54 1993/05/13 19:51:15 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -710,7 +710,8 @@ ...@@ -710,7 +710,8 @@
(dump-fop 'lisp::fop-fdefinition file)) (dump-fop 'lisp::fop-fdefinition file))
(:type-predicate (:type-predicate
(dump-object 'load-type-predicate file) (dump-object 'load-type-predicate file)
(dump-object (type-specifier (cdr entry)) file) (let ((*unparse-function-type-simplify* t))
(dump-object (type-specifier (cdr entry)) file))
(dump-fop 'lisp::fop-funcall file) (dump-fop 'lisp::fop-funcall file)
(dump-byte 1 file)) (dump-byte 1 file))
(:xep (:xep
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment