/[gcl]/gcl/ansi-tests/iteration.lsp
ViewVC logotype

Diff of /gcl/ansi-tests/iteration.lsp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by pfdietz, Sun Oct 27 01:12:47 2002 UTC revision 1.5 by pfdietz, Thu Mar 6 03:59:34 2003 UTC
# Line 391  Line 391 
391    nil)    nil)
392    
393  (deftest dotimes.6  (deftest dotimes.6
394    (let ((x nil))    (block done
395      (dotimes (i -1 x) (push i x)))      (dotimes (i -1 'good)
396    nil)        (return-from done 'bad)))
397      good)
398    
399  (deftest dotimes.7  (deftest dotimes.7
400    (let ((x nil))    (block done
401      (dotimes (i (1- most-negative-fixnum) x) (push i x)))      (dotimes (i (1- most-negative-fixnum) 'good)
402    nil)        (return-from done 'bad)))
403      good)
404    
405  ;;; Implicit nil block has the right scope  ;;; Implicit nil block has the right scope
406  (deftest dotimes.8  (deftest dotimes.8

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26