2001-08-28
2001-08-28 21:36:01 by Martin Stjernholm <mast@lysator.liu.se>
-
2f1486e3d9dabb93dd1019cdef91107c57406d8c
(19 lines)
(+10/-9)
[
Show
| Annotate
]
Branch: 5.2
Renamed the Debug module RoxenDebug to resolve name conflict with
Debug.pmod in Pike. Compatibility issue, but it shouldn't matter much since
it's barely used.
Rev: server/etc/modules/Debug.pmod:1.4(DEAD)
Rev: server/etc/modules/RXML.pmod/module.pmod:1.242
Rev: server/etc/modules/RoxenDebug.pmod:1.4
Rev: server/protocols/http.pike:1.334
2:
//
// Created 1999-07-30 by Martin Stjernholm.
//
- // $Id: module.pmod,v 1.241 2001/08/27 20:07:27 mast Exp $
+ // $Id: module.pmod,v 1.242 2001/08/28 21:36:01 mast Exp $
// Kludge: Must use "RXML.refs" somewhere for the whole module to be
// loaded correctly.
68: Inside #if defined(RXML_OBJ_DEBUG)
#ifdef RXML_OBJ_DEBUG
# define MARK_OBJECT \
- mapping|object __object_marker = Debug.ObjectMarker (this_object())
+ mapping|object __object_marker = RoxenDebug.ObjectMarker (this_object())
# define MARK_OBJECT_ONLY \
- mapping|object __object_marker = Debug.ObjectMarker (0)
+ mapping|object __object_marker = RoxenDebug.ObjectMarker (0)
#else
# define MARK_OBJECT ;
# define MARK_OBJECT_ONLY ;
6486: Inside #if defined(RXML_OBJ_DEBUG)
"constant is_RXML_encodable = 1;\n"
#ifdef RXML_OBJ_DEBUG
// Don't want to encode the cloning of
- // Debug.ObjectMarker in the __INIT that is dumped,
- // since that debug might not be wanted when the dump is
- // decoded.
+ // RoxenDebug.ObjectMarker in the __INIT that is
+ // dumped, since that debug might not be wanted when
+ // the dump is decoded.
"mapping|object __object_marker = ",
- bind (Debug.ObjectMarker ("object(compiled RXML code)")), ";\n"
+ bind (RoxenDebug.ObjectMarker ("object(compiled RXML code)")), ";\n"
#else
LITERAL (MARK_OBJECT) ";\n"
#endif
7268: Inside #if defined(RXML_OBJ_DEBUG)
#ifdef RXML_OBJ_DEBUG
case "ObjectMarker":
- ENCODE_DEBUG_RETURN (Debug.ObjectMarker (what[1]));
+ ENCODE_DEBUG_RETURN (RoxenDebug.ObjectMarker (what[1]));
#endif
}
}
7394:
else if (what == xml_tag_parser)
ENCODE_DEBUG_RETURN ("xtp");
#ifdef RXML_OBJ_DEBUG
- else if (object_program (what) == Debug.ObjectMarker)
+ else if (object_program (what) == RoxenDebug.ObjectMarker)
ENCODE_DEBUG_RETURN (({
"ObjectMarker",
reverse (array_sscanf (reverse (what->id), "]%*d[%s")[0])}));