X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fpprint.lisp;h=f28a76f22ab91c8e0551b29d7929e087832801b0;hb=4dbc52ee4f9a4f566701f1d33e7916e8491b918b;hp=6ad9b5d09cf47c2a6fbf0b608a1a974f9791dcf5;hpb=78a057624fecd10d0fb2ead4ef02ffc361b1ee22;p=sbcl.git diff --git a/src/code/pprint.lisp b/src/code/pprint.lisp index 6ad9b5d..f28a76f 100644 --- a/src/code/pprint.lisp +++ b/src/code/pprint.lisp @@ -851,8 +851,8 @@ (defvar *precompiled-pprint-dispatch-funs* (list (frob (typep object 'array)) (frob (and (consp object) - (and (typep (car object) 'symbol) - (typep (car object) '(satisfies fboundp))))) + (symbolp (car object)) + (fboundp (car object)))) (frob (typep object 'cons))))) (defun compute-test-fn (type) @@ -1265,7 +1265,7 @@ ;; printers for regular types (/show0 "doing SET-PPRINT-DISPATCH for regular types") (set-pprint-dispatch 'array #'pprint-array) - (set-pprint-dispatch '(cons (and symbol (satisfies fboundp))) + (set-pprint-dispatch '(cons symbol) #'pprint-fun-call -1) (set-pprint-dispatch 'cons #'pprint-fill -2) ;; cons cells with interesting things for the car