(defgeneric property-type (value)
(:documentation "Guess a sensible property type to use for VALUE.")
(:method ((value symbol)) :symbol)
(defgeneric property-type (value)
(:documentation "Guess a sensible property type to use for VALUE.")
(:method ((value symbol)) :symbol)
(:method ((value string)) :string)
(:method ((value character)) :char)
(:method (value) :other))
(:method ((value string)) :string)
(:method ((value character)) :char)
(:method (value) :other))