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

Diff for /OpenXM_contrib2/asir2000/builtin/help.c between version 1.7 and 1.11

version 1.7, 2009/02/19 15:48:26 version 1.11, 2015/08/14 13:51:54
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/builtin/help.c,v 1.6 2009/02/14 08:46:14 takayama Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/help.c,v 1.10 2015/08/08 14:19:41 fujimoto Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 110  char *s;
Line 110  char *s;
         if ( !s )          if ( !s )
                 ghelp();                  ghelp();
         else {          else {
 #if !defined(VISUAL)  #if !defined(VISUAL) && !defined(__MINGW32__)
                 int i;                  int i;
                 FUNC f;                  FUNC f;
                 char name[BUFSIZ],com[BUFSIZ];                  char name[BUFSIZ],com[BUFSIZ];
Line 129  char *s;
Line 129  char *s;
                         if ( f && f->id == A_USR && f->f.usrf->desc )                          if ( f && f->id == A_USR && f->f.usrf->desc )
                                 fprintf(stderr,"%s\n",f->f.usrf->desc);                                  fprintf(stderr,"%s\n",f->f.usrf->desc);
                 }                  }
   #else
                   FUNC f;
                   gen_searchf_searchonly(s,&f);
                   if ( f && f->id == A_USR && f->f.usrf->desc )
                           fprintf(stderr,"%s\n",f->f.usrf->desc);
   
 #endif  #endif
         }          }
 }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.11

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