From 993ab10a4f7ffe14f018b4e7ad0e9e33049c6107 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Wed, 1 Sep 2004 03:23:42 +0000
Subject: [PATCH] COMPUTE-TAB-SIZE was incorrectly computing the tab size for
 the non-relative tab case.  Fixes the ansi-tests pprint-tab.line.1 and
 pprint-tab.section.1.

---
 code/pprint.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/pprint.lisp b/code/pprint.lisp
index 45f4011a6..fb63c7727 100644
--- a/code/pprint.lisp
+++ b/code/pprint.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/pprint.lisp,v 1.39 2004/08/31 19:36:36 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.40 2004/09/01 03:23:42 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -401,7 +401,7 @@
 	   (if (zerop colinc)
 	       0
 	       (- colinc
-		  (rem (- column origin) colinc)))))))
+		  (rem (- column origin colnum) colinc)))))))
 
 (defun index-column (index stream)
   (let ((column (pretty-stream-buffer-start-column stream))
-- 
GitLab