Fix hash table pretty printing in CCL
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Wed, 14 Nov 2018 18:18:20 -0500 | 
    
    
        | parents | 04099eeb54c0 | 
    
        | children | 70497b31cb24 | 
    
        | branches/tags | (none) | 
    
        | files | src/base.lisp | 
Changes
    
--- a/src/base.lisp	Fri Nov 09 21:56:55 2018 -0500
+++ b/src/base.lisp	Wed Nov 14 18:18:20 2018 -0500
@@ -379,5 +379,7 @@
   (values))
 
 (defun toplevel ()
+  ;; ccl clobbers the pprint dispatch table when dumping an image, no idea why
+  (set-pprint-dispatch 'hash-table 'losh:pretty-print-hash-table)
   (print-version)
   (run))