Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b2db44d9
Commit
b2db44d9
authored
Sep 06, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Plain Diff
Merge from trunk.
parents
1dc4aa6d
d809b8eb
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
7 deletions
+33
-7
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+12
-0
lisp/gnus/gnus-sum.el
lisp/gnus/gnus-sum.el
+2
-1
lisp/gnus/nnir.el
lisp/gnus/nnir.el
+8
-5
lisp/isearch.el
lisp/isearch.el
+5
-0
src/ChangeLog
src/ChangeLog
+1
-1
No files found.
lisp/ChangeLog
View file @
b2db44d9
2011-09-06 Alan Mackenzie <acm@muc.de>
* isearch.el (isearch-other-meta-char): Wherever a key list is
unread, "unread" the prefix arg, too. This fixes bug #8901.
2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
* progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
...
...
lisp/gnus/ChangeLog
View file @
b2db44d9
2011-09-05 Andrew Cohen <cohen@andy.bu.edu>
* gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
original-article-buffer.
2011-09-05 Kan-Ru Chen <kanru@kanru.info>
* nnir.el (nnir-compose-result): Fix matching of server type.
(nnir-run-swish++): Ditto.
(nnir-run-namazu): Ditto.
(nnir-run-notmuch): Ditto.
2011-09-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
...
...
lisp/gnus/gnus-sum.el
View file @
b2db44d9
...
...
@@ -7214,6 +7214,7 @@ If FORCE (the prefix), also save the .newsrc file(s)."
(quit-config (gnus-group-quit-config gnus-newsgroup-name))
(gnus-group-is-exiting-p t)
(article-buffer gnus-article-buffer)
(original-article-buffer gnus-original-article-buffer)
(mode major-mode)
(group-point nil)
(buf (current-buffer))
...
...
@@ -7290,7 +7291,7 @@ If FORCE (the prefix), also save the .newsrc file(s)."
(unless (eq major-mode 'gnus-sticky-article-mode)
(gnus-kill-buffer article-buffer)
(setq gnus-article-current nil))))
(gnus-kill-buffer
gnus-
original-article-buffer))
(gnus-kill-buffer original-article-buffer))
;; Clear the current group name.
(unless quit-config
...
...
lisp/gnus/nnir.el
View file @
b2db44d9
...
...
@@ -806,7 +806,7 @@ ready to be added to the list of search results."
;; remove trailing slash and, for nnmaildir, cur/new/tmp
(setq dirnam
(substring dirnam 0
(if (string
=
(gnus-group-server server)
"
nnmaildir
"
)
(if (string
-match "
^nnmaildir:
"
(gnus-group-server server))
-5 -1)))
;; Set group to dirnam without any leading dots or slashes,
...
...
@@ -816,7 +816,7 @@ ready to be added to the list of search results."
"
[/\\]
" "
.
" t)))
(vector (gnus-group-full-name group server)
(if (string
=
(gnus-group-server server)
"
nnmaildir
"
)
(if (string
-match "
^nnmaildir:
"
(gnus-group-server server))
(nnmaildir-base-name-to-article-number
(substring article 0 (string-match "
:
" article))
group nil)
...
...
@@ -1073,7 +1073,8 @@ Windows NT 4.0."
;; is sufficient. Note that we can't only use the value of
;; nnml-use-compressed-files because old articles might have been
;; saved with a different value.
(article-pattern (if (string= (gnus-group-server server) "
nnmaildir
")
(article-pattern (if (string-match "
^nnmaildir:
"
(gnus-group-server server))
"
:[0-9]+
"
"
^[0-9]+\\
(
\\.[a-z0-9]+\\
)
?$
"))
score artno dirnam filenam)
...
...
@@ -1315,7 +1316,8 @@ Tested with Namazu 2.0.6 on a GNU/Linux system."
;; (when group
;; (error "The Namazu backend cannot search specific groups"))
(
save-excursion
(
let
((
article-pattern
(
if
(
string=
(
gnus-group-server
server
)
"nnmaildir"
)
(
let
((
article-pattern
(
if
(
string-match
"^nnmaildir:"
(
gnus-group-server
server
))
":[0-9]+"
"^[0-9]+$"
))
artlist
...
...
@@ -1388,7 +1390,8 @@ actually)."
(
groupspec
(
cdr
(
assq
'group
query
)))
(
prefix
(
nnir-read-server-parm
'nnir-notmuch-remove-prefix
server
))
artlist
(
article-pattern
(
if
(
string=
(
gnus-group-server
server
)
"nnmaildir"
)
(
article-pattern
(
if
(
string-match
"^nnmaildir:"
(
gnus-group-server
server
))
":[0-9]+"
"^[0-9]+$"
))
artno
dirnam
filenam
)
...
...
lisp/isearch.el
View file @
b2db44d9
...
...
@@ -1920,6 +1920,7 @@ Isearch mode."
(if (lookup-key global-map key)
(progn
(isearch-done)
(setq prefix-arg arg)
(apply 'isearch-unread keylist))
(setq keylist
(listify-key-sequence (lookup-key local-function-key-map key)))
...
...
@@ -1935,6 +1936,7 @@ Isearch mode."
(setq keylist (cdr keylist)))
;; As the remaining keys in KEYLIST can't be handled
;; here, we must reread them.
(setq prefix-arg arg)
(apply 'isearch-unread keylist)
(setq keylist nil)))))
(
...
...
@@ -1957,8 +1959,10 @@ Isearch mode."
isearch-other-control-char)))))
(setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
(cancel-kbd-macro-events)
(setq prefix-arg arg)
(apply 'isearch-unread keylist))
((eq search-exit-option 'edit)
(setq prefix-arg arg)
(apply 'isearch-unread keylist)
(isearch-edit-string))
;; Handle a scrolling function.
...
...
@@ -1987,6 +1991,7 @@ Isearch mode."
(isearch-edit-string))
(search-exit-option
(let (window)
(setq prefix-arg arg)
(isearch-unread-key-sequence keylist)
(setq main-event (car unread-command-events))
...
...
src/ChangeLog
View file @
b2db44d9
2011-09-0
5
Paul Eggert <eggert@cs.ucla.edu>
2011-09-0
6
Paul Eggert <eggert@cs.ucla.edu>
* fileio.c: Fix bugs with large file offsets (Bug#9428).
The previous code assumed that file offsets (off_t values) fit in
...
...
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