-
Notifications
You must be signed in to change notification settings - Fork 108
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
Backquote bug #492
Labels
Comments
Sorry for update, occasionally hit enter) |
Changing bq-attach-append in (defun bq-attach-append (op item result)
(cond ((and (null-or-quoted item) (null-or-quoted result))
(if (atom (cadr item))
(list *bq-quote* (cadr item))
(list *bq-quote* (append (cadr item) (cadr result)))))
((or (null result) (equal result *bq-quote-nil*))
(if (bq-splicing-frob item) (list op item) item))
((and (consp result) (eq (car result) op))
(list* (car result) item (cdr result)))
(t (list op item result)))) |
@SuperDisk nice, would you mind opening a PR for it? then we can make sure it passes tests and see the diff. |
Done, although I'm not 100% confident it's the right way to implement the fix. This project looks really cool by the way, I'd be really interested in hacking more on it if I get some time. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: