diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/shr.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index d0d35407367..878b9b9eb6b 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-03-19 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * shr.el (shr-insert): Update the text state properly to avoid | ||
| 4 | inserting spurious paragraph starts. | ||
| 5 | |||
| 1 | 2012-03-14 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2012-03-14 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * gnus-sum.el (gnus-update-marks): Don't propagate marks unless | 8 | * gnus-sum.el (gnus-update-marks): Don't propagate marks unless |
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el index 53c0063de2e..c2040a9b8cf 100644 --- a/lisp/gnus/shr.el +++ b/lisp/gnus/shr.el | |||
| @@ -332,6 +332,7 @@ the URL of the image to the kill buffer instead." | |||
| 332 | (unless shr-start | 332 | (unless shr-start |
| 333 | (setq shr-start (point))) | 333 | (setq shr-start (point))) |
| 334 | (insert elem) | 334 | (insert elem) |
| 335 | (setq shr-state nil) | ||
| 335 | (let (found) | 336 | (let (found) |
| 336 | (while (and (> (current-column) shr-width) | 337 | (while (and (> (current-column) shr-width) |
| 337 | (progn | 338 | (progn |