Opened 14 years ago
Closed 14 years ago
#336 closed defect (fixed)
format-compiler-base overwrites previous definition of `format'
Reported by: | felix winkelmann | Owned by: | azul |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | extensions | Version: | 4.5.x |
Keywords: | format-compiler | Cc: | Kon Lovett |
Estimated difficulty: |
Description
The format-compiler-base
module imports the extras
unit and so overwrites the existing version of format
. Better would be:
(require-library extras) (module format-compiler-base ... (import (except extras format)) ...
(newer version of chicken support the except
directly in require-extension
, but this variant works with older versions)
Change History (4)
comment:1 Changed 14 years ago by
Owner: | set to azul |
---|---|
Status: | new → assigned |
comment:2 Changed 14 years ago by
comment:4 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
I changed this and tagged a new version ({{17017.1}}).
Note: See
TracTickets for help on using
tickets.
Unless somebody objects, I'll change this myself, then.