Skip to content
Snippets Groups Projects
Commit 17e727f5 authored by ram's avatar ram
Browse files

Moved CONDITION defstruct here from error.

parent e8fccdbc
No related branches found
No related tags found
No related merge requests found
...@@ -119,3 +119,13 @@ ...@@ -119,3 +119,13 @@
to ; Symbol holding alist or vector from integers to keywords. to ; Symbol holding alist or vector from integers to keywords.
kind ; Kind of from mapping, :vector or :alist. kind ; Kind of from mapping, :vector or :alist.
offset) ; Offset to add to value for :vector from mapping. offset) ; Offset to add to value for :vector from mapping.
;;; Condition structures:
(in-package "CONDITIONS")
(defstruct (condition (:constructor |constructor for condition|)
(:predicate nil)
(:print-function condition-print))
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment