Changeset 1878 for trunk/dll/cmdline.c


Ignore:
Timestamp:
Oct 12, 2015, 12:24:39 AM (10 years ago)
Author:
Gregg Young
Message:

Remove some dead code and comments source files starting with A-D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/cmdline.c

    r1859 r1878  
    9999  LINKCMDLINES *info, *last = NULL, *CmdLineHead;
    100100  PSZ pszCmdLine;
    101   //CHAR s[1024];
    102101  INT x = 0;
    103102  CHAR *moder = "r";
     
    156155  FILE *fp;
    157156  PSZ pszCmdLine;
    158   //CHAR s[CCHMAXPATH + 14];
    159157  CHAR *modew = "w";
    160158
     
    399397    MLEsetlimit(WinWindowFromID(hwnd, EXEC_ENVIRON), 1000);
    400398    WinSetDlgItemText(hwnd, EXEC_ENVIRON, ex->environment);
    401 //      WinEnableWindow(WinWindowFromID(hwnd,EXEC_ENVIRON),FALSE);
    402399    WinSendMsg(hwnd, UM_SETUP, MPVOID, MPVOID);
    403400    PosOverOkay(hwnd);
     
    421418        strcpy(executable, ex->path);
    422419        AddBackslashToPath(executable);
    423         //if (executable[strlen(executable) - 1] != '\\')
    424         //  strcat(executable, "\\");
    425420      }
    426421      else
     
    438433          *p = 0;
    439434        if (IsFile(executable) == -1) {
    440 //        p = searchpath(executable);
    441 //        if (*p)
    442435          if (SearchPathForFile(PCSZ_PATH, executable, executable))     // jbs: OK to have same source and destination?
    443 //          strcpy(executable, p);
    444 //        else {
    445436            WinSetDlgItemText(hwnd,
    446437                              EXEC_WARNING2,
    447438                              (CHAR *) GetPString(IDS_CANTFINDFILETEXT));
    448439            break;
    449 //        }
    450440        }
    451441      }
Note: See TracChangeset for help on using the changeset viewer.