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
5b9b62f1
Commit
5b9b62f1
authored
Jan 31, 2011
by
Lars Ingebrigtsen
Committed by
Katsumi Yamaoka
Jan 31, 2011
Browse files
gnus-art.el (article-transform-date): Fix infinite recursion.
parent
3df3a1fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+1
-0
lisp/gnus/gnus-art.el
lisp/gnus/gnus-art.el
+3
-3
No files found.
lisp/gnus/ChangeLog
View file @
5b9b62f1
...
...
@@ -2,6 +2,7 @@
* gnus-art.el (article-transform-date): Rewrite to still work when
there are several rfc2822 parts.
(article-transform-date): Fix infinite recursion.
* nnimap.el (nnimap-wait-for-response): Wait for results in a more
secure manner.
...
...
lisp/gnus/gnus-art.el
View file @
5b9b62f1
...
...
@@ -3440,8 +3440,7 @@ possible values."
(
delete-region
(
point-at-bol
)
(
progn
(
gnus-article-forward-header
)
(
point
)))
(
article-transform-date
date
type
bface
eface
)
(
forward-line
1
)))))))
(
article-transform-date
date
type
bface
eface
)))))))
(
defun
article-transform-date
(
date
type
bface
eface
)
(
dolist
(
this-type
(
cond
...
...
@@ -3463,7 +3462,8 @@ possible values."
(
put-text-property
(
match-beginning
1
)
(
1+
(
match-end
1
))
'face
bface
)
(
put-text-property
(
match-beginning
2
)
(
match-end
2
)
'face
eface
))))
'face
eface
))
(
forward-line
1
)))
(
defun
article-make-date-line
(
date
type
)
"Return a DATE line of TYPE."
...
...
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