doc/SYMBOLS: Distinguish c-type and parser (atomic) specifiers and forms.
[sod] / doc / list-exports
index a90c0d5..c82100a 100755 (executable)
        (null)))
     (when (find-class symbol nil)
       (push :class things))
-    (when (or (specialized-on-p #'sod:expand-c-type-spec 0 symbol)
-             (specialized-on-p #'sod:expand-c-type-form 0 symbol))
-      (push :c-type things))
-    (when (or (specialized-on-p #'sod-parser:expand-parser-spec 1 symbol)
-             (specialized-on-p #'sod-parser:expand-parser-form 1 symbol))
-      (push :parser things))
+    (when (specialized-on-p #'sod:expand-c-type-spec 0 symbol)
+      (push :c-type-spec things))
+    (when (specialized-on-p #'sod:expand-c-type-form 0 symbol)
+      (push :c-type-form things))
+    (when (specialized-on-p #'sod-parser:expand-parser-spec 1 symbol)
+      (push :parser-spec things))
+    (when (specialized-on-p #'sod-parser:expand-parser-form 1 symbol)
+      (push :parser-form things))
     (when (get symbol 'optparse::opthandler)
       (push :opthandler things))
     (when (get symbol 'optparse::optmacro)