help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What does "lacks a prefix" mean?


From: Rusi
Subject: Re: What does "lacks a prefix" mean?
Date: Thu, 9 Jul 2015 20:10:20 -0700 (PDT)
User-agent: G2/1.0

On Friday, July 10, 2015 at 4:00:18 AM UTC+5:30, Emanuel Berg wrote:
> Rusi writes:
> 
> > Ive sometimes wished for a let-variant that does the
> > duty of both let and let* eg.
> 
> > (let (((x 1) (y 2))
> >       ((z (foo x y))))
> >   body...)
> >
> > This kind of let would cost one paren more than the usual let.
> > But could make dependencies explicit without
> > overspecifying
> 
> let* already does what let does.

*** Welcome to IELM ***  Type (describe-mode) for help.
ELISP> (setq a 'a b 'b)
b
ELISP> (let ((a b)(b a)) (list a b))
(b a)

ELISP> (let* ((a b)(b a)) (list a b))
(b b)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]