Pretty-Print-Handler Bug Example

Example:                                                       
  > '((x "positional 1")                                       
        (rest ("positional 2" "positional 3"))                 
        (a ())                                                 
        (b ("b-arg"))                                          
        (c (("first c1" "second c1") ("first c2" "second c2")))
        (d #f)                                                 
        (e ()))                                                
  '((x "positional 1")                                         
    (rest ("positional 2" "positional 3"))                     
    (a ())                                                     
    (b ("b-arg"))                                              
    (c (("first c1" "second c1") ("first c2" "second c2")))    
    (d #f)                                                     
    (e ()))                                                    
