From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bill Schottstaedt Newsgroups: gmane.lisp.guile.bugs Subject: max-iterations in ice-9/format.scm Date: Sat, 8 Mar 2003 04:11:19 -0800 Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Message-ID: <200303081211.EAA12227@cmn14.stanford.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (NeXT Mail 3.3 v148.2.1) Content-Type: text/plain X-Trace: main.gmane.org 1047125788 2052 80.91.224.249 (8 Mar 2003 12:16:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 8 Mar 2003 12:16:28 +0000 (UTC) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Sat Mar 08 13:16:27 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18rdFb-0000Wy-00 for ; Sat, 08 Mar 2003 13:16:27 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18rdG5-0001pm-00 for guile-bugs@m.gmane.org; Sat, 08 Mar 2003 07:16:57 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18rdCM-0000Ay-00 for bug-guile@gnu.org; Sat, 08 Mar 2003 07:13:06 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18rdC8-00004q-00 for bug-guile@gnu.org; Sat, 08 Mar 2003 07:12:53 -0500 Original-Received: from cm-mail.stanford.edu ([171.64.197.135]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18rdAl-00085d-00 for bug-guile@gnu.org; Sat, 08 Mar 2003 07:11:27 -0500 Original-Received: from cmn14.stanford.edu (cmn14.stanford.edu [171.64.197.163]) by cm-mail.stanford.edu (8.11.6/8.11.6) with ESMTP id h28CBNo12716 for ; Sat, 8 Mar 2003 04:11:23 -0800 Original-Received: (from bil@localhost) by cmn14.stanford.edu (8.9.3/8.9.3) id EAA12227 for bug-guile@gnu.org; Sat, 8 Mar 2003 04:11:22 -0800 (PST) X-Nextstep-Mailer: Mail 3.3 [m68k] (Enhance 2.2p2) Original-Received: by NeXT.Mailer (1.148.2.1) Original-To: bug-guile@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GUILE, GNU's Ubiquitous Extension Language List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.bugs:687 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:687 Currently format truncates a list at the 100th item without any warning: (define nums (list 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199)) (format #f "~{~A ~}" nums) "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 " This is because line 618 sets "max-iterations" to 100 if it isn't otherwise prescribed. Here is a diff that fixes it: /home/bil/cl/ diff format.scm ../test/guile-1.6.2/ice-9/format.scm 618,619c618 < ;(else (if (not max-iterations) (set! max-iterations 100))) < ) --- > (else (if (not max-iterations) (set! max-iterations 100)))) 641c640 < (and max-iterations (>= i max-iterations))))))) --- > (>= i max-iterations)))))) 650c649 < (and max-iterations (>= arg-pos max-iterations)))) --- > (>= arg-pos max-iterations))) 667c666 < (and max-iterations (>= i max-iterations))) --- > (>= i max-iterations)) 676c675 < (and max-iterations (>= arg-pos max-iterations))) --- > (>= arg-pos max-iterations)) _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://mail.gnu.org/mailman/listinfo/bug-guile