Ignore:
Timestamp:
Aug 29, 2002, 9:59:24 AM (23 years ago)
Author:
bird
Message:

Quote (single) the class and segment names when generating watcom input.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/kFileDef.cpp

    r9162 r9164  
    1 /* $Id: kFileDef.cpp,v 1.12 2002-08-29 07:55:43 bird Exp $
     1/* $Id: kFileDef.cpp,v 1.13 2002-08-29 07:59:24 bird Exp $
    22 *
    33 * kFileDef - Definition files.
     
    808808    {
    809809        if (pSeg->pszName)
    810             pOut->printf("SEGMENT %s %s\n", pSeg->pszName, pSeg->pszAttr ? pSeg->pszAttr : "");
     810            pOut->printf("SEGMENT '%s' %s\n", pSeg->pszName, pSeg->pszAttr ? pSeg->pszAttr : "");
    811811        if (pSeg->pszClass)
    812             pOut->printf("SEGMENT CLASS %s %s\n", pSeg->pszClass, pSeg->pszAttr ? pSeg->pszAttr : "");
     812            pOut->printf("SEGMENT CLASS '%s' %s\n", pSeg->pszClass, pSeg->pszAttr ? pSeg->pszAttr : "");
    813813        pSeg = pSeg->pNext;
    814814    }
Note: See TracChangeset for help on using the changeset viewer.