[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: return
From: |
Chong Yidong |
Subject: |
Re: return |
Date: |
Fri, 03 Dec 2010 17:44:01 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
Chong Yidong <address@hidden> writes:
> This (very limited) test indicates that adding built-in support for
> block, return, and return-from should have little performance impact.
> (Though the block tags ought to use a specialized obarray instead of
> what cl-macs.el does, which is to intern them as "--cl-block-%s--".)
>
> Does anyone see a deeper problem with providing such functions?
Thinking about this some more, I do see a couple of snags. First, the
`dotimes' and `dolist' macros use `while' internally, so if we introduce
a built-in `return' that exits from `while', it's hard to make that same
`return' exit correctly from `dotimes'/`dolist'. One solution might be
to introduce something like `while-noblock' and use that in `dotimes'
and `dolist'.
Also, block tags should have lexical scope, so in order to implement
`block' properly we probably ought to wait for the lexical binding
changes. I think it is currently possible to implement `return' for
exiting unnamed blocks, and leave `block'/`return-from' for the future,
but I dunno if doing it like that is worth our while.
- Re: return, Chong Yidong, 2010/12/03
- Re: return, Miles Bader, 2010/12/03
- Re: return, Chong Yidong, 2010/12/03
- Re: return, Chong Yidong, 2010/12/03
- Re: return, Stefan Monnier, 2010/12/03
- Re: return, Chong Yidong, 2010/12/03
- Re: return, Stefan Monnier, 2010/12/03
- Re: return, Chong Yidong, 2010/12/03
- Re: return, Davis Herring, 2010/12/06
- Re: return, Chong Yidong, 2010/12/06
- Re: return,
Chong Yidong <=
- Re: return, Helmut Eller, 2010/12/04