Fix fencepost error that caused the wrong number of columns to be
authorChris Hanson <org/chris-hanson/cph>
Sat, 28 Oct 2000 03:33:36 +0000 (03:33 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 28 Oct 2000 03:33:36 +0000 (03:33 +0000)
allocated for the message number when the folder was exactly a power
of ten.

v7/src/imail/imail-summary.scm

index 483b575ecb3fbfcdc1b99d6dcd15a252ce6e442e..42e54e71125679af2a016e321bef94665bff63d0 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-summary.scm,v 1.32 2000/10/27 03:18:44 cph Exp $
+;;; $Id: imail-summary.scm,v 1.33 2000/10/28 03:33:36 cph Exp $
 ;;;
 ;;; Copyright (c) 2000 Massachusetts Institute of Technology
 ;;;
@@ -250,7 +250,7 @@ SUBJECT is a string of regexps separated by commas."
             (if (< i end)
                 (loop (+ i 1) (cons (get-message folder i) messages))
                 (reverse! messages))))
-         (index-digits (exact-nonnegative-integer-digits (- end 1)))
+         (index-digits (exact-nonnegative-integer-digits end))
          (show-date? (ref-variable imail-summary-show-date buffer))
          (subject-width (imail-summary-subject-width buffer)))
       (let ((mark (mark-left-inserting-copy (buffer-start buffer))))