[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as tople
From: |
Stefan Monnier |
Subject: |
Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling |
Date: |
Mon, 21 Apr 2014 11:09:46 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) |
> Correctly treat progn contents as toplevel forms when byte compiling
Your commit messages should be copies of the ChangeLog entry.
Could you describe the case(s) that this fixes?
> + ;; Macroexpand (not macroexpand-all!)
That could be a problem.
> form at toplevel in case it
> + ;; expands into a toplevel-equivalent `progn'. See CLHS section
> + ;; 3.2.3.1, "Processing of Top Level Forms".
Note that Elisp is not Common-Lisp, so we don't always follow
Common-Lisp's design decisions (although, we often do, as well).
> The semantics are very
> + ;; subtle: see test/automated/bytecomp-tests.el for interesting
> + ;; cases.
> + (setf form (macroexpand form byte-compile-macro-environment))
> + (if (eq (car-safe form) 'progn)
> + (cons 'progn
> + (mapcar (lambda (subform)
> + (byte-compile-recurse-toplevel
> + subform non-toplevel-case))
> + (cdr form)))
> + (funcall non-toplevel-case form)))
`non-toplevel-case' is declared as optional, but here you call it
without ensuring it's non-nil. IOW it shouldn't be optional.
> (defconst byte-compile-initial-macro-environment
> '(
> ;; (byte-compiler-options . (lambda (&rest forms)
> ;; (apply 'byte-compiler-options-handler forms)))
> (declare-function . byte-compile-macroexpand-declare-function)
> (eval-when-compile . (lambda (&rest body)
Oops, we have a bug here. We should be using `(... ,(lambda ...
Stefan
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling,
Stefan Monnier <=
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/21
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Stefan Monnier, 2014/04/21
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/21
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Stefan Monnier, 2014/04/21
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/21
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Stefan Monnier, 2014/04/22
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/22
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Stefan Monnier, 2014/04/22
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/22
- Re: [Emacs-diffs] trunk r117002: Correctly treat progn contents as toplevel forms when byte compiling, Daniel Colascione, 2014/04/22