Changeset cc7302 in git


Ignore:
Timestamp:
Aug 11, 2011, 3:21:35 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
2bc4f5a0399eb703dcb16b05ba2872985f7cafc6
Parents:
320f1c493166188f02c725a08142ac1ff60c6d6b
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-11 15:21:35+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:19:16+01:00
Message:
ADD: expose feStringAppendBrowsers (moved to Singular/fehelp.*)
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Singular/fehelp.cc

    r320f1c rcc7302  
    1515
    1616#include <kernel/mod2.h>
     17
     18#include <omalloc/omalloc.h>
    1719#include <omalloc/mylimits.h>
    18 #include <Singular/tok.h>
    19 #include <omalloc/omalloc.h>
     20
    2021#include <kernel/febase.h>
    21 #include <Singular/ipid.h>
    22 #include <Singular/ipshell.h>
    23 #include <Singular/libparse.h>
    24 #include <Singular/feOpt.h>
    2522#include <reporter/reporter.h>
    2623
     24#include "ipid.h"
     25#include "ipshell.h"
     26#include "libparse.h"
     27#include "feOpt.h"
     28
     29#include "tok.h"
    2730#include "fehelp.h"
    2831
     
    7881static void heWinHelp(heEntry hentry,int);
    7982static void heWinHtmlHelp(heEntry hentry,int);
    80 #include <Singular/sing_win.h>
     83#include "sing_win.h"
    8184#endif
    8285
  • Singular/fehelp.h

    r320f1c rcc7302  
    22#define FEHELP_H
    33
     4
     5/*****************************************************************
     6 *
     7 * help system (fehelp.cc)
     8 *
     9 *****************************************************************/
     10// if str != NULL display help for str
     11// display general help, otherwise
    412void feHelp(char* str = NULL);
    5 const char* feHelpBrowser(char* which=NULL, int warn=-1);
     13// if browser != NULL or feOpt("browser") != NULL
     14//    set HelpBrowser to browser
     15// otherwise, if browser was already set, leave as is,
     16//            if not, choose first available browser
     17// return string identifying current browser
     18// keeps feOpt("browser") up-to-date
     19// Optional warn argument is as in feResource
     20const char* feHelpBrowser(char* browser = NULL, int warn = -1);
     21
     22void feStringAppendBrowsers(int warn = -1);
    623
    724#endif /*  FEHELP_H */
  • Singular/misc_ip.cc

    r320f1c rcc7302  
    354354#include "static.h"
    355355
     356#include "fehelp.h"
     357
    356358#ifdef HAVE_STATIC
    357359#undef HAVE_DYN_RL
  • kernel/old.febase.h

    r320f1c rcc7302  
    212212};
    213213
    214 /*****************************************************************
    215  *
    216  * help system (fehelp.cc)
    217  *
    218  *****************************************************************/
    219 // if str != NULL display help for str
    220 // display general help, otherwise
    221 void feHelp(char* str = NULL);
    222 // if browser != NULL or feOpt("browser") != NULL
    223 //    set HelpBrowser to browser
    224 // otherwise, if browser was already set, leave as is,
    225 //            if not, choose first available browser
    226 // return string identifying current browser
    227 // keeps feOpt("browser") up-to-date
    228 // Optional warn argument is as in feResource
    229 const char* feHelpBrowser(char* browser = NULL, int warn = -1);
    230 void feStringAppendBrowsers(int warn = -1);
    231214
    232215/*****************************************************************
Note: See TracChangeset for help on using the changeset viewer.