Rename tagging to predicate-tagging to clarify its purpose.
authorChris Hanson <org/chris-hanson/cph>
Sun, 8 Jan 2017 06:43:41 +0000 (22:43 -0800)
committerChris Hanson <org/chris-hanson/cph>
Sun, 8 Jan 2017 06:43:41 +0000 (22:43 -0800)
src/runtime/make.scm
src/runtime/predicate-tagging.scm [moved from src/runtime/tagging.scm with 99% similarity]
src/runtime/runtime.pkg

index 734eb8ae4cc90e99afa227687466affca57516db..7fde571172b764e58543b3d85d760aacd33ab4ad 100644 (file)
@@ -452,10 +452,10 @@ USA.
    (RUNTIME MEMOIZER)
    (RUNTIME PREDICATE-METADATA)
    (RUNTIME PREDICATE-LATTICE)
+   (RUNTIME PREDICATE-TAGGING)
+   (RUNTIME PREDICATE-DISPATCH)
    (RUNTIME COMPOUND-PREDICATE)
    (RUNTIME PARAMETRIC-PREDICATE)
-   (RUNTIME TAGGING)
-   (RUNTIME PREDICATE-DISPATCH)
    (RUNTIME HASH)
    (RUNTIME DYNAMIC)
    (RUNTIME REGULAR-SEXPRESSION)
similarity index 99%
rename from src/runtime/tagging.scm
rename to src/runtime/predicate-tagging.scm
index 11576336fcea07d24763ed9650dfe26c930940d6..490fdfe9f3e20f733b5458805e6c96c79fcbecad 100644 (file)
@@ -25,7 +25,7 @@ USA.
 |#
 
 ;;;; Predicates: tagging
-;;; package: (runtime tagging)
+;;; package: (runtime predicate-tagging)
 
 (declare (usual-integrations))
 \f
index d8008a2ce5e643a648057c1a96ec380d6fb33c2c..83444f75a48d8e3f1bce0fe559c64009dbac38da 100644 (file)
@@ -1736,7 +1736,7 @@ USA.
          unary-procedure?)
   (export (runtime continuation-parser)
          compiled-procedure-frame-size)
-  (export (runtime tagging)
+  (export (runtime predicate-tagging)
          %entity-is-apply-hook?))
 
 (define-package (runtime predicate-metadata)
@@ -1823,8 +1823,8 @@ USA.
           predicate-template-predicate
           predicate-template?))
 
-(define-package (runtime tagging)
-  (files "tagging")
+(define-package (runtime predicate-tagging)
+  (files "predicate-tagging")
   (parent (runtime))
   (export ()
          object->datum
@@ -3674,7 +3674,7 @@ USA.
          structure-tag/unparser-method)
   (export (runtime predicate-metadata)
          cleanup-boot-time-record-predicates!)
-  (export (runtime tagging)
+  (export (runtime predicate-tagging)
          %record-type-descriptor
          %record-type-tag)
   (initialization (initialize-package!)))