We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I may have broken something in my branch (see #39). Now when I compile dispatched-entry-form, I am getting this compilation note:
dispatched-entry-form
; file: /Users/rpg/lisp/buildapp/dumper.lisp ; in: DEFUN DISPATCHED-ENTRY-FORM ; (MACROEXPAND-1 (BUILDAPP::QUIT 1)) ; ; note: The first argument never returns a value. ; (LIST ; `(FORMAT *ERROR-OUTPUT* "Unknown dispatch name '~A', quitting~%" ; BUILDAPP::BINARY-NAME) ; (MACROEXPAND-1 (BUILDAPP::QUIT 1))) ; ; note: deleting unreachable code
Any idea what's causing this? Is it a problem? I'm not even sure what "The first argument" refers to:
macroexpand-1
(BUILDAPP::QUIT 1)
list
`(FORMAT *ERROR-OUTPUT* "Unknown dispatch name '~A', quitting~%" BUILDAPP::BINARY-NAME)
Or is it just that we're missing a quote in front of the argument to macroexpand-1?
The text was updated successfully, but these errors were encountered:
Inserting that quote makes the note go away, but I can't say I'm sure I'm doing the right thing.
Sorry, something went wrong.
Possible solution to GitHub xach#40.
53b4c59
Maybe the argument to `macroexpand-1` needed a quote?
No branches or pull requests
I may have broken something in my branch (see #39). Now when I compile
dispatched-entry-form
, I am getting this compilation note:Any idea what's causing this? Is it a problem? I'm not even sure what "The first argument" refers to:
macroexpand-1
:(BUILDAPP::QUIT 1)
?list
:`(FORMAT *ERROR-OUTPUT* "Unknown dispatch name '~A', quitting~%" BUILDAPP::BINARY-NAME)
?Or is it just that we're missing a quote in front of the argument to
macroexpand-1
?The text was updated successfully, but these errors were encountered: