newLISP Fan Club

Forum => newLISP in the real world => Topic started by: lyl on August 29, 2020, 05:35:36 PM

Title: how to prevent unwanted eval?
Post by: lyl on August 29, 2020, 05:35:36 PM
I use a function "f" to store data by calling another function "g" like this:
(define (g (x y)) x)
(define (f data)
  (setf (nth '(0 0 1) g) data)
  )
 
;;test:
(f 1)
(g) ;; -> 1  Right. This is what I want.
(g) ;; -> 1  Right. This is what I want.
(f '(+ 1 2))
(g) ;; -> 3  This is not what I want. I can't understand why the quoted list '(+ 1 2) is evaluated?. I just want to get the list itself '(+ 1 2)


By contrast,
(define (g x) x)
(define (f data) (g data))
(f '(+ 1 2)) ;; -> (+ 1 2)   The list is not evaled.


Is there a better way to prevent this kind of unwanted eval during the parameter transfer?
Title: Re: how to prevent unwanted eval?
Post by: newBert on August 31, 2020, 06:16:41 AM
One possibility, probably among others:


> (define (g (x nil)) x)
(lambda ((x nil)) x)
> (define-macro (f) (setf (nth '(0 0 1) g) (args 0)))
(lambda-macro () (setf (nth '(0 0 1) g) (args 0)))
> (f 1)
1
> (g)
1
> (f '(+ 1 2))
'(+ 1 2)
> (g)
(+ 1 2)


P.S.: I preferred (args 0) instead of 'data' for macro 'f' to avoid variable capture in passed parameters