src/pset-impl.lisp: Decode C fragments as property values.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 27 Jul 2019 11:51:27 +0000 (12:51 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 3 Aug 2019 15:27:36 +0000 (16:27 +0100)
doc/SYMBOLS
src/pset-impl.lisp

index 102b013..96c79c6 100644 (file)
@@ -951,6 +951,7 @@ decode-property
   cl:integer
   cl:string
   cl:symbol
+  c-fragment
   c-type
   property
 effective-method-after-methods
index 8e1743f..338306a 100644 (file)
@@ -96,6 +96,7 @@
 (defmethod decode-property ((raw character)) (values :char raw))
 (defmethod decode-property ((raw function)) (values :func raw))
 (defmethod decode-property ((raw c-type)) (values :type raw))
+(defmethod decode-property ((raw c-fragment)) (values :c-fragment raw))
 
 ;;; Keywords.