Changed conditional command flag from C to F
authorKurt A. Schoens <kas@ucbvax.Berkeley.EDU>
Tue, 6 Jan 1981 09:35:20 +0000 (01:35 -0800)
committerKurt A. Schoens <kas@ucbvax.Berkeley.EDU>
Tue, 6 Jan 1981 09:35:20 +0000 (01:35 -0800)
SCCS-vsn: usr.bin/mail/lex.c 1.9

usr/src/usr.bin/mail/lex.c

index 33a9375..3a460df 100644 (file)
@@ -8,7 +8,7 @@
  * Lexical processing of commands.
  */
 
  * Lexical processing of commands.
  */
 
-static char *SccsId = "@(#)lex.c       1.8 %G%";
+static char *SccsId = "@(#)lex.c       1.9 %G%";
 
 /*
  * Set up editing on the given file name.
 
 /*
  * Set up editing on the given file name.
@@ -251,7 +251,7 @@ execute(linebuf)
         * we always execute it, otherwise, check the state of cond.
         */
 
         * we always execute it, otherwise, check the state of cond.
         */
 
-       if ((com->c_argtype & C) == 0)
+       if ((com->c_argtype & F) == 0)
                if (cond == CRCV && !rcvmode || cond == CSEND && rcvmode)
                        return(0);
 
                if (cond == CRCV && !rcvmode || cond == CSEND && rcvmode)
                        return(0);
 
@@ -297,7 +297,7 @@ execute(linebuf)
                return(0);
        }
        e = 1;
                return(0);
        }
        e = 1;
-       switch (com->c_argtype & ~(C|P|I|M|T|W)) {
+       switch (com->c_argtype & ~(F|P|I|M|T|W)) {
        case MSGLIST:
                /*
                 * A message list defaulting to nearest forward
        case MSGLIST:
                /*
                 * A message list defaulting to nearest forward