aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2012-10-09 02:28:34 +0000
committerKatsumi Yamaoka2012-10-09 02:28:34 +0000
commit7518fc1221d36f911b60abcaec42759c42292d78 (patch)
treed4f578424ccf092af0d3e9a6aa705fb3b8dbdcc0
parenta4ff7fe1452e56d2c11ca31652bd145868e87e17 (diff)
downloademacs-7518fc1221d36f911b60abcaec42759c42292d78.tar.gz
emacs-7518fc1221d36f911b60abcaec42759c42292d78.zip
shr.el (shr-insert): \r is also not inserted, so don't try to delete it
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/shr.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index f79353ebfb3..c6b2a4c37a7 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12012-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * shr.el (shr-insert): \r is also not inserted, so don't try to delete
4 it.
5
12012-10-06 Glenn Morris <rgm@gnu.org> 62012-10-06 Glenn Morris <rgm@gnu.org>
2 7
3 * gnus-notifications.el (gnus-notifications): 8 * gnus-notifications.el (gnus-notifications):
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el
index e7a6c5d2081..03704554459 100644
--- a/lisp/gnus/shr.el
+++ b/lisp/gnus/shr.el
@@ -391,7 +391,7 @@ size, and full-buffer size."
391 (shr-indent)) 391 (shr-indent))
392 (end-of-line)) 392 (end-of-line))
393 (insert " "))) 393 (insert " ")))
394 (unless (string-match "[ \t\n ]\\'" text) 394 (unless (string-match "[ \t\r\n ]\\'" text)
395 (delete-char -1))))) 395 (delete-char -1)))))
396 396
397(defun shr-find-fill-point () 397(defun shr-find-fill-point ()