branch: externals/gnorb
commit c8b80c5f11dde676507cb373c5e4997d91ce2bde
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Bugfix for gnorb-gnus-view
* gnorb-gnus.el (gnorb-gnus-view): `let' should have been `let*'.
---
gnorb-gnus.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnorb-gnus.el b/gnorb-gnus.el
index 19a7603..f1436ac 100644
--- a/gnorb-gnus.el
+++ b/gnorb-gnus.el
@@ -663,11 +663,11 @@ option `gnorb-gnus-hint-relevant-article' is non-nil."
(defun gnorb-gnus-view ()
"Display the first relevant TODO heading for the message under point"
(interactive)
- (let ((headers (gnus-data-header
+ (let* ((headers (gnus-data-header
(gnus-data-find
(gnus-summary-article-number))))
- (tracked-headings
- (gnorb-find-tracked-headings headers)))
+ (tracked-headings
+ (gnorb-find-tracked-headings headers)))
(when tracked-headings
(setq gnorb-window-conf (current-window-configuration))
(move-marker gnorb-return-marker (point))