X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=inline;f=tests%2Fpprint.impure.lisp;h=39884e05fb77d8ada4ba6bcca06e33c07288709b;hb=f41b718f89090d00e2625f103e29281061800729;hp=4e6d8a3394ca97c6cd1bbb0850195fa1eee4fbac;hpb=9ebf496afbad179facaa8db5d45e5a807b1c002c;p=sbcl.git diff --git a/tests/pprint.impure.lisp b/tests/pprint.impure.lisp index 4e6d8a3..39884e0 100644 --- a/tests/pprint.impure.lisp +++ b/tests/pprint.impure.lisp @@ -291,5 +291,11 @@ (when errors (error "Can't PPRINT imporper lists: ~a" errors)))) +(with-test (:name :pprint-circular-backq-comma) + ;; LP 1161218 reported by James M. Lawrence + (let ((string (write-to-string '(let ((#1=#:var '(99))) + `(progn ,@(identity #1#))) + :circle t :pretty t))) + (assert (not (search "#2#" string))))) ;;; success