Changeset cf2307d in git


Ignore:
Timestamp:
Jul 20, 2005, 10:12:24 AM (19 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d491e3539a2da0402b635d237784feb83bcdc3e8
Parents:
4e819500ba1aa0c2558af540e642e5040a966222
Message:
fehelp.cc
---> If HTML Help is standard browser, pass keyword to browser, even if not
      in index file. But also display standard messages.


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

Legend:

Unmodified
Added
Removed
  • Singular/fehelp.cc

    r4e8195 rcf2307d  
    44/*
    55* ABSTRACT: help system
    6 * versin $Id: fehelp.cc,v 1.44 2005-07-20 08:00:28 wienand Exp $
     6* versin $Id: fehelp.cc,v 1.45 2005-07-20 08:12:24 wienand Exp $
    77*/
    88
     
    142142  if (idxfile != NULL)
    143143  {
     144    if (heCurrentHelpBrowser == NULL) feHelpBrowser(NULL, 0);
     145    assume(heCurrentHelpBrowser != NULL);
     146    if (heCurrentHelpBrowser->browser == "htmlhelp") {
     147      // In Windows always let htmlhelp handle request, if standard
     148      strcpy(hentry.key, str);
     149      *hentry.node = '\0';
     150      *hentry.url = '\0';
     151      hentry.chksum = 0;
     152      heBrowserHelp(&hentry);
     153    }
     154
    144155    char* matches = StringSetS("");
    145156    int found = heReKey2Entry(idxfile, str, &hentry);
Note: See TracChangeset for help on using the changeset viewer.