Skip to content
Snippets Groups Projects
Commit 66819755 authored by wlott's avatar wlott
Browse files

Removed use of TAB-OVER, so I can remove pprint.lisp from the cold load.

parent 39ba4bb7
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.14 1991/11/16 15:56:08 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.15 1991/12/01 18:10:44 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -846,8 +846,8 @@
(when name
(write-string name)
(unless (eql j (1- cols))
(tab-over
(- col-width (length (the simple-string name))))))))
(dotimes (i (- col-width (length (the simple-string name))))
(write-char #\space))))))
(terpri)))
(when return-list
result)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment