|   | 
 ANSI Common Lisp    9 Conditions    9.2 Dictionary of Conditions
 
| 9.2.19  simple-condition-format-control, simple-condition-format-arguments | 
Function | 
  
 
 - Syntax:
 - 
simple-condition-format-control
condition
  
  format-control
simple-condition-format-arguments
condition
    format-arguments
 
  - Arguments and Values:
 - 
condition - a condition of type simple-condition.
format-control - a format control.
 
format-arguments - a list.
 
  - Description:
 - 
simple-condition-format-control returns the format control needed to 
process the condition's format arguments.
simple-condition-format-arguments returns a list of format arguments 
needed to process the condition's format control.
 
  - Examples:
 - 
 (setq foo (make-condition 'simple-condition
                          :format-control "Hi ~S"
                          :format-arguments '(ho)))
  #<SIMPLE-CONDITION 26223553>
 (apply #'format nil (simple-condition-format-control foo)
                     (simple-condition-format-arguments foo))
  "Hi HO"
  - See Also:
 - 
simple-condition,
Section 9.1 Condition System Concepts
 
  - Allegro CL Implementation Details:
 - 
See cl:simple-condition-format-arguments and cl:simple-condition-format-control
in implementation.html 
for information on the implementation of cl:simple-condition-format-arguments and cl:simple-condition-format-control.
  
 |