mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: remove useless lexically bound variable
A let binding without a value is just an obfuscated way of saying nil, especially if you are not going to mutate the variable.
This commit is contained in:
parent
1a7f9fe055
commit
bed62eb8be
1 changed files with 3 additions and 4 deletions
|
@ -1001,10 +1001,9 @@ message together with all its descendents."
|
|||
|
||||
(defun notmuch-tree-insert-forest-thread (forest-thread)
|
||||
"Insert a single complete thread."
|
||||
(let (tree-status)
|
||||
;; Reset at the start of each main thread.
|
||||
(setq notmuch-tree-previous-subject nil)
|
||||
(notmuch-tree-insert-thread forest-thread 0 tree-status)))
|
||||
;; Reset at the start of each main thread.
|
||||
(setq notmuch-tree-previous-subject nil)
|
||||
(notmuch-tree-insert-thread forest-thread 0 nil))
|
||||
|
||||
(defun notmuch-tree-insert-forest (forest)
|
||||
"Insert a forest of threads.
|
||||
|
|
Loading…
Reference in a new issue