Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
47ac6170
Commit
47ac6170
authored
Dec 08, 2010
by
Andrew Cohen
Committed by
Katsumi Yamaoka
Dec 08, 2010
Browse files
nnir.el (nnir-retrieve-headers): Use rassq when comparing article ids.
(nnir-run-gmane): Simplify groupspec formatting.
parent
eff37c5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+6
-0
lisp/gnus/nnir.el
lisp/gnus/nnir.el
+5
-6
No files found.
lisp/gnus/ChangeLog
View file @
47ac6170
2010-12-08 Andrew Cohen <cohen@andy.bu.edu>
* nnir.el (nnir-retrieve-headers): Use rassq when comparing article
ids.
(nnir-run-gmane): Simplify groupspec formatting.
2010-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
...
...
lisp/gnus/nnir.el
View file @
47ac6170
...
...
@@ -635,7 +635,7 @@ Add an entry here when adding a new search engine.")
(while (not (eobp))
(let* ((novitem (funcall parsefunc))
(artno (mail-header-number novitem))
(art (car (rass
oc
artno articleids))))
(art (car (rass
q
artno articleids))))
(when art
(mail-header-set-number novitem art)
(push novitem headers))
...
...
@@ -1379,11 +1379,10 @@ Tested with Namazu 2.0.6 on a GNU/Linux system."
(
let*
((
case-fold-search
t
)
(
qstring
(
cdr
(
assq
'query
query
)))
(
server
(
cadr
(
gnus-server-to-method
srv
)))
(
groupspec
(
if
groups
(
mapconcat
(
lambda
(
x
)
(
format
"group:%s"
(
gnus-group-short-name
x
)))
groups
" "
)
""
))
(
groupspec
(
mapconcat
(
lambda
(
x
)
(
format
"group:%s"
(
gnus-group-short-name
x
)))
groups
" "
))
(
authorspec
(
if
(
assq
'author
query
)
(
format
"author:%s"
(
cdr
(
assq
'author
query
)))
""
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment