branch: externals/gnorb
commit 4f62ec8101f083e60332a840a6d8587d7399ea18
Author: Eric Abrahamsen <[email protected]>
Commit: Stefan Monnier <[email protected]>
Fix inevitable screwup in previous commit, bump version
* packages/gnorb/nngnorb.el (nnir-run-gnorb): The earlier
"streamlining" streamlined a little too much.
* packages/gnorb/gnorb.el: Flush new version.
---
gnorb.el | 2 +-
nngnorb.el | 7 +++----
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnorb.el b/gnorb.el
index 1837459..3048ffd 100644
--- a/gnorb.el
+++ b/gnorb.el
@@ -2,7 +2,7 @@
;; Copyright (C) 2014 Free Software Foundation, Inc.
-;; Version: 1.2
+;; Version: 1.2.1
;; Package-Requires: ((cl-lib "0.5"))
;; Maintainer: Eric Abrahamsen <[email protected]>
diff --git a/nngnorb.el b/nngnorb.el
index a0e8f8c..8b84afe 100644
--- a/nngnorb.el
+++ b/nngnorb.el
@@ -134,10 +134,9 @@ be scanned for gnus messages, and those messages
displayed."
;; First add all links to messages (elements of messages should
;; look like (group-name message-id)).
(dolist (l links)
- (push (list (car (split-string link "#"))
- (org-link-unescape
- (nth 1 (split-string link "#"))))
- messages))
+ (push (org-link-unescape
+ (nth 1 (split-string l "#")))
+ msg-ids))
(unless (gnus-alive-p)
(gnus))