Index: DEPRECATED.pod =================================================================== --- DEPRECATED.pod (revision 48320) +++ DEPRECATED.pod (working copy) @@ -344,12 +344,6 @@ L -=item C and C - -This function is not used or tested anywhere. - -http://trac.parrot.org/parrot/ticket/1660 - =item PMC Attributes Allocation Functions [experimental] Parrot_gc_allocate_pmc_attributes Index: src/namespace.c =================================================================== --- src/namespace.c (revision 48320) +++ src/namespace.c (working copy) @@ -607,35 +607,6 @@ /* -=item C - -Search the namespace designated by C, or the HLL root if -C is NULL, for an object with name C. Return the -object, or NULL if not found. - -TT #1222 - For now this function prefers non-namespaces, it will eventually -entirely use the untyped interface. - -=cut - -*/ - -PARROT_EXPORT -PARROT_WARN_UNUSED_RESULT -PARROT_CAN_RETURN_NULL -PMC * -Parrot_find_global_s(PARROT_INTERP, ARGIN_NULLOK(STRING *str_key), - ARGIN_NULLOK(STRING *globalname)) -{ - ASSERT_ARGS(Parrot_find_global_s) - PMC * const hll_ns = Parrot_get_ctx_HLL_namespace(interp); - PMC * const ns = Parrot_ns_get_namespace_keyed_str(interp, hll_ns, str_key); - return Parrot_ns_find_namespace_global(interp, ns, globalname); -} - -/* - =item C @@ -661,33 +632,6 @@ /* -=item C - -Store the PMC C into the namespace designated by C, or -the HLL root if C is NULL, with the name C. - -=cut - -*/ - -PARROT_EXPORT -void -Parrot_store_global_s(PARROT_INTERP, ARGIN_NULLOK(STRING *str_key), - ARGIN_NULLOK(STRING *globalname), ARGIN_NULLOK(PMC *val)) -{ - ASSERT_ARGS(Parrot_store_global_s) - PMC * const hll_ns = Parrot_get_ctx_HLL_namespace(interp); - PMC * const ns = Parrot_ns_make_namespace_keyed_str(interp, hll_ns, str_key); - Parrot_ns_store_global(interp, ns, globalname, val); - - /* TT #1225 - method cache invalidation should be a namespace function */ - Parrot_invalidate_method_cache(interp, str_key); -} - - -/* - =item C