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

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

bug#66136: 29.1; byte-compiler reports "misplaced interactive spec" with


From: Eli Zaretskii
Subject: bug#66136: 29.1; byte-compiler reports "misplaced interactive spec" with empty fct in lexical environment
Date: Fri, 22 Sep 2023 08:58:47 +0300

> Date: Thu, 21 Sep 2023 23:39:47 +0200
> From:  Jens Schmidt via "Bug reports for GNU Emacs,
>  the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
> 
> Found the issue I think:
> 
> -------------------- bad case --------------------
> (macroexp-parse-body '("Allows interactive calls." (interactive "^P")))
> 
> =>
> 
> (("Allows interactive calls.")
>  (interactive "^P"))
> -------------------- bad case --------------------
> 
> -------------------- good case --------------------
> (macroexp-parse-body '("Allows interactive calls." (interactive "^P") nil))
> 
> =>
> 
> (("Allows interactive calls." (interactive "^P"))
>  nil)
> -------------------- good case --------------------
> 
> That is, macroexp-parse-body does not consider the case that a body can
> consist of declarations only and, if this is the case, puts the last
> declaration into the body forms.
> 
> Could provide a patch if somebody confirms that this is really the root
> cause of this issue.  Yet on the other hand this is pretty deep elisp,
> so if somebody else steps forward, I'll be glad as well.

Adding Stefan, in case he has comments/suggestions.





reply via email to

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