infix problem back in 8.4.10

Notices and updates
Locked
HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

infix problem back in 8.4.10

Post by HPW »

Code: Select all

newLISP v.8.4.10 on Win32 MinGW.

> (INFIX:xlate "3 + 4")
(add 3 4)
> (eval(INFIX:xlate "3 + 4"))

value expected in function add : 3

> 
Hans-Peter

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Post by HPW »

I think:

Code: Select all

                (push (sym var) expression))
should be:

Code: Select all

                (push var expression))
Right?
Hans-Peter

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

Yes, I posted a corrected inifx-1-7.lsp in the development directory.

Lutz

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

I will be travelling April 3-4-5 and may not be able to watch the discussion board all the time. For urgent requests mail me at lutz@nuevatec.com with the word: newlisp in the subject line. I will look into my email probably twice on the days Monday and Tuesday.

Lutz

Locked