~ chicken-core (chicken-5) 5889b1e6b054022d3d82f0b6ccf62eed9f732640
commit 5889b1e6b054022d3d82f0b6ccf62eed9f732640 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Wed Feb 9 04:54:46 2011 -0500 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Wed Feb 9 04:54:46 2011 -0500 added doc for condition->list by ckeen diff --git a/manual/Exceptions b/manual/Exceptions index 426b7fbf..9e75e0bd 100644 --- a/manual/Exceptions +++ b/manual/Exceptions @@ -121,6 +121,17 @@ A slightly more convenient condition property accessor, equivalent to ((condition-property-accessor KIND PROPERTY [DEFAULT]) CONDITION) + +<procedure>(condition->list CONDITION)</procedure> + +This procedure converts a condition object into a list holding all the +conditions that are represented by the ''CONDITION'' object. It is +formatted as follows: + + ((KIND1 (PROPERTY1 VALUE1) (PROPERTY2 VALUE2) ...) (KIND2 ... ) ... ) + +There is no guaranteed order within the list. + == SRFI-12 specification A Scheme implementation ("the system") raises an exception whenever anTrap