X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/1d8cc67a3f4ded443f5efc673a616883cbae9c50..a65375b6d41bc166162d0d941fc2ff9d91d7b683:/src/output-proto.lisp?ds=sidebyside diff --git a/src/output-proto.lisp b/src/output-proto.lisp index 5b00dcf..6a26a7b 100644 --- a/src/output-proto.lisp +++ b/src/output-proto.lisp @@ -7,7 +7,7 @@ ;;;----- Licensing notice --------------------------------------------------- ;;; -;;; This file is part of the Sensble Object Design, an object system for C. +;;; This file is part of the Sensible Object Design, an object system for C. ;;; ;;; SOD is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by @@ -41,8 +41,7 @@ (export '(sequencer sequencer-constraints sequencer-table)) (defclass sequencer () - ((constraints :initarg :constraints :initform nil - :type list :accessor sequencer-constraints) + ((constraints :initform nil :type list :accessor sequencer-constraints) (table :initform (make-hash-table :test #'equal) :reader sequencer-table)) (:documentation @@ -100,6 +99,7 @@ ;;;-------------------------------------------------------------------------- ;;; Output preparation. +(export 'hook-output) (defgeneric hook-output (object reason sequencer) (:documentation "Announces the intention to write SEQUENCER, with a particular REASON. @@ -118,6 +118,7 @@ ;;;-------------------------------------------------------------------------- ;;; Useful syntax. +(export 'sequence-output) (defmacro sequence-output ((streamvar sequencer) &body clauses) "Register output behaviour in a convenient manner.