[BACK]Return to glob.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/glob.c between version 1.41 and 1.42

version 1.41, 2003/12/03 09:32:36 version 1.42, 2004/01/07 06:25:42
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.40 2003/11/11 06:14:08 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.41 2003/12/03 09:32:36 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "al.h"  #include "al.h"
Line 179  void notdef(VL vl,Obj a,Obj b,Obj *c)
Line 179  void notdef(VL vl,Obj a,Obj b,Obj *c)
   
 int do_asirrc;  int do_asirrc;
 int do_file;  int do_file;
   char *do_filename;
 int do_message;  int do_message;
 int do_fep;  int do_fep;
 int read_exec_file;  int read_exec_file;
   int asir_setenv;
 static int buserr_sav;  static int buserr_sav;
 static char asir_history[BUFSIZ];  static char asir_history[BUFSIZ];
   
Line 334  void process_args(int ac,char **av)
Line 336  void process_args(int ac,char **av)
                                 asir_terminate(1);                                  asir_terminate(1);
                         }                          }
                         do_file = 1;                          do_file = 1;
                           do_filename = *(av+1);
                         av += 2; ac -= 2;                          av += 2; ac -= 2;
                   } else if ( !strcmp(*av,"-E") ) {
                           asir_setenv = 1; av++; ac--;
                 } else if ( !strcmp(*av,"-quiet") ) {                  } else if ( !strcmp(*av,"-quiet") ) {
                         do_quiet = 1; av++; ac--;                          do_quiet = 1; av++; ac--;
                 } else if ( !strcmp(*av,"-norc") ) {                  } else if ( !strcmp(*av,"-norc") ) {

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>