From: Sungwoo Lim
Subject: [Q] Limitation of lambda list in DEFUN form?
Date: 
Message-ID: <sungwoo-1804011627330001@gorecki.cad.strath.ac.uk>
Hello,

I tried to define one function as

(defun test (x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15)
  ; and something
)

MCL gives me an error about bad lambda list While preprocessing the test
definition.

I reduced the number of lambda list, and finally realised it is compiled
with upto 12 lists. I couldn't find any document that the lambda list has
a limitation like this. What is wrong? I check all 15 variables and they
have actual values already.
Thanks in advance.

Sungwoo

-- 
<^)++<
From: Sungwoo Lim
Subject: Sorry, it was my mistake.
Date: 
Message-ID: <sungwoo-1804011640170001@gorecki.cad.strath.ac.uk>
I put some same things in the lambda list like

(defun test (x1 x2 x3 x4 x5 x1 x2)
   )

Damn.... Dumb.. >.,<

-- 
<^)++<