shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly at the end of lines.

smiley.el (gnus-smiley-file-types): Add gif as supported file type.
This commit is contained in:
Gnus developers 2011-05-29 23:28:45 +00:00 committed by Katsumi Yamaoka
parent ed7f1a6c5c
commit ca3cf0a561
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,12 @@
2011-05-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
at the end of lines.
2011-05-29 Julien Danjou <julien@danjou.info>
* smiley.el (gnus-smiley-file-types): Add gif as supported file type.
2011-05-27 Glenn Morris <rgm@gnu.org>
* gnus-group.el (gnus-bug-group-download-format-alist):

View file

@ -601,7 +601,7 @@ START, and END. Note that START and END should be merkers."
:help-echo (if title (format "%s (%s)" url title) url)
:keymap shr-map
url)
(put-text-property start (point) 'face 'shr-link)
(shr-add-font start (point) 'shr-link)
(put-text-property start (point) 'shr-url url))
(defun shr-encode-url (url)

View file

@ -133,9 +133,11 @@ regexp to replace with IMAGE. IMAGE is the name of an image file in
(let ((types (list "pbm")))
(when (gnus-image-type-available-p 'xpm)
(push "xpm" types))
(when (gnus-image-type-available-p 'gif)
(push "gif" types))
types)
"*List of suffixes on smiley file names to try."
:version "22.1"
:version "24.1"
:type '(repeat string)
:group 'smiley)