From: Kevin M. Rosenberg Date: Tue, 22 Apr 2003 14:19:08 +0000 (+0000) Subject: r4577: Auto commit for Debian build X-Git-Tag: debian-2.11.0-2~141 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=091384f1aef529b0b5c9f065f672805199515ced r4577: Auto commit for Debian build --- diff --git a/mop.lisp b/mop.lisp index 891dc0c..ae29458 100644 --- a/mop.lisp +++ b/mop.lisp @@ -11,7 +11,7 @@ ;;;; in Text, HTML, and XML formats. This includes hyperlinking ;;;; capability and sub-objects. ;;;; -;;;; $Id: mop.lisp,v 1.60 2003/04/16 22:00:15 kevin Exp $ +;;;; $Id: mop.lisp,v 1.61 2003/04/22 14:19:08 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -233,19 +233,19 @@ value-type (car value-type)) ((:string :cdata :varchar :char) - 'string) + '(or null string)) (:character - 'character) + '(or null character)) (:fixnum - 'fixnum) + '(or null fixnum)) (:boolean - 'boolean) + '(or null boolean)) (:integer - 'integer) + '(or null integer)) ((:float :single-float) - 'single-float) + '(or null single-float)) (:double-float - 'double-float) + '(or null double-float)) (otherwise t)))