Changeset 8c71e8 in git


Ignore:
Timestamp:
Sep 24, 1999, 2:24:41 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
af37b9d65a78de638493f625f1b016ba8a867a37
Parents:
a40c6b72997ba692cd10e9477c9a9b40da2f29a1
Message:
*** empty log message ***


git-svn-id: file:///usr/local/Singular/svn/trunk@3657 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/tesths.cc

    ra40c6b r8c71e8  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: tesths.cc,v 1.74 1999-09-21 16:40:16 obachman Exp $ */
     4/* $Id: tesths.cc,v 1.75 1999-09-24 12:24:41 Singular Exp $ */
    55
    66/*
     
    6969        != EOF)
    7070  {
    71     if (optc == '?' || optc == 0) 
     71    if (optc == '?' || optc == 0)
    7272    {
    7373      fprintf(stderr, "Use '%s --help' for a complete list of options\n", feArgv0);
     
    7979
    8080    assume(option_index >= 0 && option_index < (int) FE_OPT_UNDEF);
    81    
    82     if (fe_optarg == NULL && 
     81
     82    if (fe_optarg == NULL &&
    8383        (feOptSpec[option_index].type == feOptBool ||
    8484         feOptSpec[option_index].has_arg == optional_argument))
     
    8686    else
    8787      errormsg = feSetOptValue((feOptIndex) option_index, fe_optarg);
    88    
     88
    8989    if (errormsg)
    9090    {
    9191      if (fe_optarg == NULL)
    92         fprintf(stderr, "Error: Option '--%s' %s\n", 
     92        fprintf(stderr, "Error: Option '--%s' %s\n",
    9393               feOptSpec[option_index].name, errormsg);
    9494      else
    95         fprintf(stderr, "Error: Option '--%s=%s' %s\n", 
     95        fprintf(stderr, "Error: Option '--%s=%s' %s\n",
    9696               feOptSpec[option_index].name, fe_optarg, errormsg);
    9797      fprintf(stderr, "Use '%s --help' for a complete list of options\n", feArgv0);
     
    184184    if (rc == NULL) rc = feFopen("~" DIR_SEPP ".singularrc", "r", buf);
    185185    if (rc == NULL) rc = feFopen(".singularrc", "r", buf);
    186    
     186
    187187    if (rc != NULL)
    188188    {
    189 
    190189      if (BVERBOSE(V_LOAD_LIB))
    191190        Print("// ** executing %s\n", buf);
Note: See TracChangeset for help on using the changeset viewer.