[ENH][PCP] RefactorModuleName

PhiHo Hoang phiho.hoang at rogers.com
Sun Jul 13 17:27:13 UTC 2003


Repost with [ENH] tag.

"Change Set:  RefactorModuleName-hph
Date:   13 July 2003
Author:   hph

This CS changes:

static const char *moduleName =
#ifdef SQUEAK_BUILTIN_PLUGIN
  "MiscPrimitivePlugin 21 June 2003 (i)"
#else
  "MiscPrimitivePlugin 21 June 2003 (e)"
#endif
;

into

#ifdef SQUEAK_BUILTIN_PLUGIN
#define iORe    "(i)"
#else
#define iORe    "(e)"
#endif

static const char *moduleName = "MiscPrimitivePlugin 13 July 2003 " iORe ;
"

Someone please verify if this works as expected on all platforms.

Cheers,

PhiHo.




More information about the Squeak-dev mailing list