Changeset 1090


Ignore:
Timestamp:
Jul 21, 2008, 6:25:14 AM (17 years ago)
Author:
John Small
Message:

Ticket 114: Change environment variable separator from blank to semicolon.

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/filldir.c

    r1083 r1090  
    4444  16 JUL 08 GKY Use TMP directory for temp files
    4545  20 Jul 08 JBS Ticket 114: Support user-selectable env. strings in Tree container.
     46  21 Jul 08 JBS Ticket 114: Change env var separator from blank to semicolon
    4647
    4748***********************************************************************/
     
    13871388
    13881389        p = pszTreeEnvVarList;
    1389         while (*p == ' ')
     1390        while (*p == ';')
    13901391          p++;
    13911392        while (*p) {
    13921393          *szFSType = 0;
    13931394          pp = szFSType;
    1394           while (*p && *p != ' ')
     1395          while (*p && *p != ';')
    13951396            *pp++ = *p++;
    13961397          *pp = 0;
    1397           while (*p == ' ')
     1398          while (*p == ';')
    13981399            p++;
    13991400          if (*szFSType &&
  • trunk/dll/ipf/notebook.ipf

    r1083 r1090  
    345345The :hp6.Show env. vars in Tree:ehp6. toggle determines whether FM/2
    346346shows a few environment variable lists (like PATH, DPATH and LIBPATH)
    347 in the Drive Tree. Use the entry field to specify a blank-separated
    348 list of the desired environment variables.
     347in the Drive Tree. Use the entry field to specify a semicolon-separated
     348list of the desired environment variables. (e.g. PATH;LIBPATH;DPATH).
     349Note that the pseudo-variable LIBPATH is also supported.
    349350
    350351
Note: See TracChangeset for help on using the changeset viewer.