Changeset bb4fa2 in git


Ignore:
Timestamp:
Aug 5, 1999, 1:28:03 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
36baed385512e1eb1c1731a1ebae7ac0130ea591
Parents:
1a13a374f1c450d3e8f176789dc2b78f9da89c56
Message:
* small changes in help/Resource stuff


git-svn-id: file:///usr/local/Singular/svn/trunk@3406 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/feResource.cc

    r1a13a37 rbb4fa2  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: feResource.cc,v 1.2 1999-08-04 15:38:25 obachman Exp $ */
     4/* $Id: feResource.cc,v 1.3 1999-08-05 11:28:02 obachman Exp $ */
    55/*
    66* ABSTRACT: management of resources
     
    277277    if (executable != NULL)
    278278    {
    279       config->value = strcpy(value, executable);
     279      strcpy(value, executable);
    280280      FreeL(executable);
    281281      if (feVerifyResourceValue(config->type,
    282282                                feCleanResourceValue(config->type, value)))
    283283      {
    284         config->value = mstrdup(value);
     284        config->value = value;
    285285#ifdef RESOURCE_DEBUG
    286286        printf("feInitResource: Set value of %s to =%s=\n", config->key, config->value);
  • Singular/febase.cc

    r1a13a37 rbb4fa2  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: febase.cc,v 1.77 1999-08-03 16:33:40 obachman Exp $ */
     4/* $Id: febase.cc,v 1.78 1999-08-05 11:28:02 obachman Exp $ */
    55/*
    66* ABSTRACT: i/o system
     
    331331  else
    332332#endif
    333   if (feWarn) /* ignore warnings in when optin --no-warn was given */
     333  if (feWarn) /* ignore warnings if option --no-warn was given */
    334334  {
    335335    fwrite(warn_str,1,6,stdout);
  • Singular/fehelp.cc

    r1a13a37 rbb4fa2  
    846846  Warn("C-h C-s %s",
    847847       (hentry != NULL && *(hentry->node) != '\0' ? hentry->node : "Top"));
    848   Warn("to enter the Singular online help.");
    849   Warn("For more information on singular-mode under Emacs, type C-h m");
     848  Warn("to enter the Singular online help. For general");
     849  Warn("information on Singular running under Emacs, type C-h m");
    850850}
    851851static BOOLEAN heBuiltinInit(int warn)
Note: See TracChangeset for help on using the changeset viewer.