~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/h/config.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-07-02 00:20:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060702002000-8bn170vd0qpx7to8
Tags: 0.9i-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
 *
99
99
 * In general, any of these limits must fit in a "signed int".
100
100
 */
101
 
/*      Maximum number of function arguments                            */
 
101
/*      Maximum number of function arguments (arbitrary)                */
102
102
#define CALL_ARGUMENTS_LIMIT 65536
103
103
 
104
104
/*      Maximum number of required arguments                            */
105
 
#define LAMBDA_PARAMETERS_LIMIT 64
 
105
#define LAMBDA_PARAMETERS_LIMIT CALL_ARGUMENTS_LIMIT
106
106
 
107
 
/*      Numb. of args. which can be passed using the C stack            */
 
107
/*      Numb. of args. which will be passed using the C stack           */
108
108
/*      See cmplam.lsp if you change this value                         */
109
109
#define C_ARGUMENTS_LIMIT 64
110
110