Changeset 204 for trunk/dll/command.c


Ignore:
Timestamp:
Jun 8, 2005, 7:57:53 AM (20 years ago)
Author:
root
Message:

Drop unused code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/command.c

    r123 r204  
    55
    66  Copyright (c) 1993-98 M. Kimes
    7   Copyright (c) 2004 Steven H.Levine
    8 
    9   Revisions     01 Aug 04 SHL Rework lstrip/rstrip usage
     7  Copyright (c) 2004, 2005 Steven H. Levine
     8
     9  01 Aug 04 SHL Rework lstrip/rstrip usage
     10  06 Jun 05 SHL Drop unused code
    1011
    1112***********************************************************************/
     
    760761VOID RunCommand (HWND hwnd,INT cx) {
    761762
    762   static CHAR  stop = 0;
    763763  INT          x;
    764764  CHAR       **list;
     
    779779
    780780    INT   flags;
    781     BOOL  dieafter = FALSE;
    782781
    783782    x--;
     
    789788    else
    790789      flags |= SEPARATE;
    791     flags &= (~KEEP);
    792     if(flags & DIEAFTER)
    793       dieafter = TRUE;
    794     flags &= (~DIEAFTER);
     790    flags &= ~(KEEP | DIEAFTER);
    795791    if((flags & ONCE) && list && list[0]) {
    796792
Note: See TracChangeset for help on using the changeset viewer.