This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via 583fcce354c115bdba3ea1c01e2cd76da4251cc8 (commit) from c4ee759adf765707fba62c154315f0ed3e9036db (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 583fcce354c115bdba3ea1c01e2cd76da4251cc8 Author: Raymond Toy toy.raymond@gmail.com Date: Fri May 25 22:50:38 2012 -0700
* {{{COMPILE-FILE}}} should not signal an error when given a list for {{{:EXTERNAL-FORMAT}}}. Lists are needed to specify a composing external format like {{{:DOS}}} or {{{:MAC}}}.
diff --git a/src/compiler/fndb.lisp b/src/compiler/fndb.lisp index 6dcd544..5229915 100644 --- a/src/compiler/fndb.lisp +++ b/src/compiler/fndb.lisp @@ -1153,7 +1153,7 @@ (:block-compile (member t nil :specified)) (:entry-points list) (:byte-compile (member t nil :maybe)) - (:external-format symbol) + (:external-format (or symbol list)) (:decoding-error (or null symbol function)) (:xref t)) (values (or pathname null) boolean boolean)) diff --git a/src/general-info/release-20d.txt b/src/general-info/release-20d.txt index 9dbf560..8c71e7f 100644 --- a/src/general-info/release-20d.txt +++ b/src/general-info/release-20d.txt @@ -76,6 +76,9 @@ New in this release: * Fix typo in ISO8859-2 external format that caused it not to work correctly. This type potentially also caused failures for all other external formats that were based on ISO8859-2. + * COMPILE-FILE should not signal an error when given a list for + :EXTERNAL-FORMAT. Lists are needed to specify a composing + external format like :DOS or :MAC.
* Trac Tickets: * #50: Print/read error with make-pathname.
-----------------------------------------------------------------------
Summary of changes: src/compiler/fndb.lisp | 2 +- src/general-info/release-20d.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletions(-)
hooks/post-receive