mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00: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
@ -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…
Reference in New Issue
Block a user