Codebase list cafeobj / ef49975
Changed print style of module name in 'desc mod tree'. tswd 9 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
533533 (defun print-modules (x)
534534 (declare (ignore x))
535535 (let ((*print-indent-contin* nil)
536 (*print-line-limit* 80)
536537 (mods nil))
537538 (dolist (entry *modules-so-far-table*)
538539 (let ((m (cdr entry)))
550551 (when (< 0 (filecol *standard-output*))
551552 (princ " "))
552553 ;; (print-modexp-simple m)
553 (print-mod-name2 m *standard-output* t)
554 (print-mod-name m *standard-output* t t)
554555 (print-check))
555556 (fresh-line)))
556557