-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Symbol's function definition is void: org-ql-block #53
Comments
Hi, That alias is autoloaded, so if it isn't working, I guess the package isn't installed correctly. |
@gcantieni Thanks for your report. Comments on #75 have shown that there is a bug here. Steps to reproduce from my comments there:
(let ((org-agenda-custom-commands
'(("a" ""
((org-ql-block '(and
(tags "Emacs")
(priority "A"))
((org-ql-block-header ":Emacs: High-priority"))))))))
(org-agenda nil "a")) Output:
Result: A backtrace saying that However, then:
Then:
Result: the agenda block is displayed properly, without error. Also, these steps seem to indicate that the alias is loaded into Emacs, but the function is still void:
Result:
Unlike the error message reported by @gcantieni, this shows that
;;;###autoload
(defalias 'org-ql-block 'org-ql-search-block) For some reason that's not causing the alias to work, even though In the meantime, users can |
Hi there, for me it looks like
org-ql-block
is pointing to a non-existent function. When I run the example usage:When I try to run this I get
Symbol's function definition is void: org-ql-block
. Additionally, when I calldescribe-function
onorg-ql-block
I get:The text was updated successfully, but these errors were encountered: