[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/byte-opt.el,v
From: |
Juanma Barranquero |
Subject: |
Re: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/byte-opt.el,v |
Date: |
Mon, 3 Mar 2008 11:26:44 +0100 |
After this change:
> --- emacs-lisp/byte-opt.el 1 Feb 2008 16:01:26 -0000 1.109
> +++ emacs-lisp/byte-opt.el 3 Mar 2008 03:38:20 -0000 1.110
> @@ -383,7 +383,9 @@
> form))
> ((or (byte-code-function-p fn)
> (eq 'lambda (car-safe fn)))
> - (byte-compile-unfold-lambda form))
> + (byte-optimize-form-code-walker
> + (byte-compile-unfold-lambda form)
> + for-effect))
> ((memq fn '(let let*))
> ;; recursively enter the optimizer for the bindings and body
> ;; of a let or let*. This for depth-firstness: forms that
>
>
In toplevel form:
byte-opt.el:633:36:Error: Variable binding depth exceeds max-specpdl-size
Juanma
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/byte-opt.el,v,
Juanma Barranquero <=