Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • help.c

    rc227706 r022e77f  
    3131#define BUFSIZE 1100
    3232
    33 help_t *help_init( help_t **help, const char *helpfile )
     33help_t *help_init( help_t **help )
    3434{
    3535        int i, buflen = 0;
     
    4141        *help = h = g_new0 ( help_t, 1 );
    4242       
    43         h->fd = open( helpfile, O_RDONLY
     43        h->fd = open( global.helpfile, O_RDONLY
    4444#ifdef _WIN32
    4545                                  | O_BINARY
     
    109109        help_t *h;
    110110
    111         for( h = *help; h; h = h->next )
     111        h=*help;       
     112
     113        while( h )
    112114        {
    113                 if( h->string != NULL &&
    114                         g_strcasecmp( h->string, string ) == 0 )
    115                         break;
     115                if( g_strcasecmp( h->string, string ) == 0 ) break;
     116                h = h->next;
    116117        }
    117118        if( h && h->length > 0 )
Note: See TracChangeset for help on using the changeset viewer.