* Bug (emacs): lexical binding breaks tag hooks
@ 2021-05-04 21:15 Matt Lundin
2021-05-05 2:26 ` [PATCH] emacs: restore tag-changes and query bindings for " Kyle Meyer
0 siblings, 1 reply; 3+ messages in thread
From: Matt Lundin @ 2021-05-04 21:15 UTC (permalink / raw)
To: notmuch
With the upgrade to notmuch 0.32, functions added to
'notmuch-after-tag-hook' or 'notmuch-before-tag-hook' no longer have
access to the 'tag-changes' or 'query' variables advertised in the
docstrings of both hooks. If I try to access either variable in a hook
function, emacs throws an error. I believe this results from the
addition of lexical binding in commit fc4cda07a9af.
Here are steps to reproduce:
1. Create a hook that accesses either the 'query' or 'tag-changes'
variable:
(defun my-notmuch-tag-change-test ()
tag-changes)
(add-hook 'notmuch-before-tag-hook #'my-notmuch-tag-change-test)
2. Attempt to change a tag in a message. This results in the following
backtrace:
--8<---------------cut here---------------start------------->8---
Debugger entered--Lisp error: (void-variable tag-changes)
my-notmuch-tag-change-test()
run-hooks(notmuch-before-tag-hook)
(progn (run-hooks 'notmuch-before-tag-hook) (if (<= (length query) notmuch-tag-argument-limit) (apply 'notmuch-call-notmuch-process "tag" (append tag-changes (list "--" query))) (let ((batch-op (concat (mapconcat #'notmuch-hex-encode tag-changes " ") " -- " query))) (notmuch-call-notmuch-process :stdin-string batch-op "tag" "--batch"))) (run-hooks 'notmuch-after-tag-hook))
(if tag-changes (progn (run-hooks 'notmuch-before-tag-hook) (if (<= (length query) notmuch-tag-argument-limit) (apply 'notmuch-call-notmuch-process "tag" (append tag-changes (list "--" query))) (let ((batch-op (concat (mapconcat ... tag-changes " ") " -- " query))) (notmuch-call-notmuch-process :stdin-string batch-op "tag" "--batch"))) (run-hooks 'notmuch-after-tag-hook)))
notmuch-tag("id:87v981o2hj.fsf@tethera.net" ("+test"))
notmuch-show-tag(("+test"))
notmuch-show-add-tag(("+test"))
funcall-interactively(notmuch-show-add-tag ("+test"))
call-interactively(notmuch-show-add-tag nil nil)
command-execute(notmuch-show-add-tag)
--8<---------------cut here---------------end--------------->8---
Best,
Matt
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] emacs: restore tag-changes and query bindings for tag hooks
2021-05-04 21:15 Bug (emacs): lexical binding breaks tag hooks Matt Lundin
@ 2021-05-05 2:26 ` Kyle Meyer
2021-05-05 13:42 ` David Bremner
0 siblings, 1 reply; 3+ messages in thread
From: Kyle Meyer @ 2021-05-05 2:26 UTC (permalink / raw)
To: Matt Lundin; +Cc: notmuch
Matt Lundin writes:
> With the upgrade to notmuch 0.32, functions added to
> 'notmuch-after-tag-hook' or 'notmuch-before-tag-hook' no longer have
> access to the 'tag-changes' or 'query' variables advertised in the
> docstrings of both hooks. If I try to access either variable in a hook
> function, emacs throws an error. I believe this results from the
> addition of lexical binding in commit fc4cda07a9af.
The approach in the patch below is similar to some changes I've seen
Stefan Monnier do for lexical binding conversions.
-- >8 --
Subject: [PATCH] emacs: restore tag-changes and query bindings for tag hooks
notmuch-before-tag-hook and notmuch-after-tag-hook are supposed to
have access to two dynamic variables, tag-changes and query, but these
were lost with the switch to lexical binding in fc4cda07 (emacs: use
lexical-bindings in all libraries, 2021-01-13).
Add a variant of Emacs's dlet (not available until Emacs 28) and use
it in notmuch-tag to expose tag-changes and query to the hooks.
---
emacs/notmuch-compat.el | 12 ++++++++++++
emacs/notmuch-tag.el | 8 ++++++--
2 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/emacs/notmuch-compat.el b/emacs/notmuch-compat.el
index ad134dfe..179bf59c 100644
--- a/emacs/notmuch-compat.el
+++ b/emacs/notmuch-compat.el
@@ -41,6 +41,18 @@ (defun notmuch-message--fold-long-headers ()
(unless (fboundp 'message--fold-long-headers)
(add-hook 'message-header-hook 'notmuch-message--fold-long-headers))
+;; `dlet' isn't available until Emacs 28.1. Below is a copy, with the
+;; addition of `with-no-warnings'.
+(defmacro notmuch-dlet (binders &rest body)
+ "Like `let*' but using dynamic scoping."
+ (declare (indent 1) (debug let))
+ `(let (_)
+ (with-no-warnings ; Quiet "lacks a prefix" warning.
+ ,@(mapcar (lambda (binder)
+ `(defvar ,(if (consp binder) (car binder) binder)))
+ binders))
+ (let* ,binders ,@body)))
+
(provide 'notmuch-compat)
;;; notmuch-compat.el ends here
diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el
index f348d4ae..ebccb5a0 100644
--- a/emacs/notmuch-tag.el
+++ b/emacs/notmuch-tag.el
@@ -486,7 +486,9 @@ (defun notmuch-tag (query tag-changes)
(unless query
(error "Nothing to tag!"))
(when tag-changes
- (run-hooks 'notmuch-before-tag-hook)
+ (notmuch-dlet ((tag-changes tag-changes)
+ (query query))
+ (run-hooks 'notmuch-before-tag-hook))
(if (<= (length query) notmuch-tag-argument-limit)
(apply 'notmuch-call-notmuch-process "tag"
(append tag-changes (list "--" query)))
@@ -494,7 +496,9 @@ (defun notmuch-tag (query tag-changes)
(let ((batch-op (concat (mapconcat #'notmuch-hex-encode tag-changes " ")
" -- " query)))
(notmuch-call-notmuch-process :stdin-string batch-op "tag" "--batch")))
- (run-hooks 'notmuch-after-tag-hook)))
+ (notmuch-dlet ((tag-changes tag-changes)
+ (query query))
+ (run-hooks 'notmuch-after-tag-hook))))
(defun notmuch-tag-change-list (tags &optional reverse)
"Convert TAGS into a list of tag changes.
base-commit: 63413a5563450bdedee4c077f2f998578e75083a
--
2.31.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] emacs: restore tag-changes and query bindings for tag hooks
2021-05-05 2:26 ` [PATCH] emacs: restore tag-changes and query bindings for " Kyle Meyer
@ 2021-05-05 13:42 ` David Bremner
0 siblings, 0 replies; 3+ messages in thread
From: David Bremner @ 2021-05-05 13:42 UTC (permalink / raw)
To: Kyle Meyer, Matt Lundin; +Cc: notmuch
Kyle Meyer <kyle@kyleam.com> writes:
> +;; `dlet' isn't available until Emacs 28.1. Below is a copy, with the
> +;; addition of `with-no-warnings'.
> +(defmacro notmuch-dlet (binders &rest body)
> + "Like `let*' but using dynamic scoping."
> + (declare (indent 1) (debug let))
> + `(let (_)
> + (with-no-warnings ; Quiet "lacks a prefix" warning.
> + ,@(mapcar (lambda (binder)
> + `(defvar ,(if (consp binder) (car binder) binder)))
> + binders))
> + (let* ,binders ,@body)))
> +
> (provide 'notmuch-compat)
What do you think Jonas, is this a reasonable approach?
d
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-05 13:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-04 21:15 Bug (emacs): lexical binding breaks tag hooks Matt Lundin
2021-05-05 2:26 ` [PATCH] emacs: restore tag-changes and query bindings for " Kyle Meyer
2021-05-05 13:42 ` David Bremner
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).