From 9605245b90da2c489310b3bfa31aca247ede7f57 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 18 Jun 1998 07:09:47 +0000 Subject: [PATCH] Fix for format absolute tabbing; from Peter VanEynde. --- code/format.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/format.lisp b/code/format.lisp index 275b7be63..1673ddca5 100644 --- a/code/format.lisp +++ b/code/format.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.37 1997/08/14 17:06:10 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.38 1998/06/18 07:09:47 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1465,7 +1465,8 @@ (output-spaces stream (- colnum cur))) (t (unless (zerop colinc) - (output-spaces stream (- colinc (rem cur colinc))))))))) + (output-spaces stream + (- colinc (rem (- cur colnum) colinc))))))))) (def-format-directive #\_ (colonp atsignp params) (expand-bind-defaults () params -- GitLab