Changeset 6d9d85 in git


Ignore:
Timestamp:
Aug 4, 2011, 2:58:25 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a3d94cc8a8a42a2f0a10758342fc722d5672fa42
Parents:
88ece17732096cebe2ea956dab2edbeaad8852ee
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-04 14:58:25+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:14:26+01:00
Message:
fix fevoices.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/fevoices.cc

    r88ece17 r6d9d85  
    3232/*0 implementation */
    3333
     34
     35char fe_promptstr[] ="  ";
     36
     37// output/print buffer:
     38#define INITIAL_PRINT_BUFFER 24*1024L
     39// line buffer for reading:
     40// minimal value for MAX_FILE_BUFFER: 4*4096 - see Tst/Long/gcd0_l.tst
     41// this is an upper limit for the size of monomials/numbers read via the interpreter
     42#define MAX_FILE_BUFFER 4*4096
     43static long feBufferLength=INITIAL_PRINT_BUFFER;
     44static char * feBuffer=(char *)omAlloc(INITIAL_PRINT_BUFFER);
    3445
    3546/**************************************************************************
Note: See TracChangeset for help on using the changeset viewer.