GNU bug report logs -
#46958
28.0.50; invalid-function error for macros that have function bindings
Previous Next
Reported by: Robert Irelan <rirelan <at> gmail.com>
Date: Sat, 6 Mar 2021 03:54:02 UTC
Severity: minor
Tags: wontfix
Found in version 28.0.50
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Robert Irelan <rirelan <at> gmail.com> writes:
> Lately I have been getting errors where occasionally `invalid-function`
> errors will be raised when calling some macros, even when those macros
> have function bindings (checked with `fboundp`). Here is an example of a
> stack trace I got when using the `org-fc` package:
>
> ```
> Debugger entered--Lisp error: (invalid-function
> org-fc-with-point-at-back-heading)
> signal(invalid-function (org-fc-with-point-at-back-heading))
I'm not quite sure I understand this bug report. First of all,
`org-fc-with-point-at-back-heading' doesn't seem to exist in the Emacs
tree, so is this from an external package?
The other issue is that I think there's a misunderstanding here: You can
never funcall a macro.
(macrop 'when)
=> t
(fboundp 'when)
=> t
(funcall 'when)
=> Debugger entered--Lisp error: (invalid-function when)
when()
Macros are foundp, but that doesn't mean you can funcall them.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
This bug report was last modified 2 years and 333 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.