Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#72 fixed load bug? Mario Domenech Goulart
Description
$ cat foo
#!/usr/bin/csi -s

(print 'foo)

$ cat foo.scm
#!/usr/bin/csi -s

(print 'foo.scm)

$ ./foo
foo.scm

$ csi
CHICKEN
(c)2008-2009 The Chicken Team
(c)2000-2007 Felix L. Winkelmann
Version 4.1.0 - SVN rev. 15292
linux-unix-gnu-x86 [ manyargs dload ptables applyhook ]
compiled 2009-08-03 on nachos (Linux)

#;1> (load "foo")
; loading foo.scm ...
foo.scm
#;2>

Should foo.scm be loaded when foo exists (specially when executed as a script)?

#73 fixed building an extension will prefer already installed eggs over currently built ones felix winkelmann
Description

Building an extension may need to load extensions/.so's that have just been produced by the current installation process, but require'ing extensions will always look in the repository first (and possibly load an obsolete version, if the extension has been installed at an earlier point).

We should provide an option (csc + chicken) that forces the search/load order to look in the current directory first. Note that the correct order for normal use should stay repo-first, then current directory, or random files in the current directory may break applications. chicken-install should invoke csc with the extra option.

#76 fixed numbers egg comparison of a bignum & a flonum can be incorrect Kon Lovett
Description

(< 1237940039285380274899124223 1237940039285380274899124224.0) ;=> #t

but

(< 1237940039285380274899124224.0 1237940039285380274899124225) ;=> #f

This is caused by using the flonum domain for all comparisons involving bignums.

(exact->inexact 1237940039285380274899124225) ;=> 1237940039285380274899124224.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Note: See TracQuery for help on using queries.