Decrease verbosity in compiler note printing.
authorJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Sun, 7 Feb 2010 11:17:53 +0000 (12:17 +0100)
committerJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Sun, 7 Feb 2010 11:17:53 +0000 (12:17 +0100)
src/cmp/cmputil.lsp

index 629b930..6d0207f 100644 (file)
           (let* ((*print-length* 3)
                   (*print-level* 2))
             (format stream "~A: in file ~A, position ~D and top form~%  ~A~%"
-                    prefix file position form))
+                    prefix
+                     (make-pathname :name (pathname-name file)
+                                    :type (pathname-type file)
+                                    :version (pathname-version file))
+                     position form))
           (format stream "~A: " prefix))
        (format stream "~?"
               (simple-condition-format-control c)