Changeset 5d4e04 in git for Singular/fehelp.cc


Ignore:
Timestamp:
Feb 13, 2017, 5:08:10 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
1603fbf5a310079971925a15a40f4a287e6be0ef
Parents:
61fc1e3830fd4a8b592475b8c88639f3d860b87d
Message:
help: prefer HTML version
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/fehelp.cc

    r61fc1e r5d4e04  
    111111  BOOLEAN key_is_regexp = (strchr(str, '*') != NULL);
    112112
    113   // try proc help and library help
    114   if (! key_is_regexp && heOnlineHelp(str)) return;
    115113
    116114  heEntry_s hentry;
     
    134132    int found = heReKey2Entry(idxfile, str, &hentry);
    135133
    136     // Try to match with str*
     134
    137135    if (found == 0)
    138136    {
     137      // try proc help and library help
     138      if (! key_is_regexp && heOnlineHelp(str)) return;
     139
     140      // Try to match with str*
    139141      char mkey[MAX_HE_ENTRY_LENGTH];
    140142      strcpy(mkey, str);
Note: See TracChangeset for help on using the changeset viewer.