mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
shr.el (shr-insert): \r is also not inserted, so don't try to delete it
This commit is contained in:
parent
a4ff7fe145
commit
7518fc1221
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2012-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* shr.el (shr-insert): \r is also not inserted, so don't try to delete
|
||||
it.
|
||||
|
||||
2012-10-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* gnus-notifications.el (gnus-notifications):
|
||||
|
|
|
|||
|
|
@ -391,7 +391,7 @@ size, and full-buffer size."
|
|||
(shr-indent))
|
||||
(end-of-line))
|
||||
(insert " ")))
|
||||
(unless (string-match "[ \t\n ]\\'" text)
|
||||
(unless (string-match "[ \t\r\n ]\\'" text)
|
||||
(delete-char -1)))))
|
||||
|
||||
(defun shr-find-fill-point ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue