diff options
| author | Gnus developers | 2011-05-29 23:28:45 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-05-29 23:28:45 +0000 |
| commit | ca3cf0a561302e2a94eb0ab24063e29580a97fe1 (patch) | |
| tree | 76979896afa727c31dea895b0631591e532f4d00 | |
| parent | ed7f1a6c5caaf4159125c08db5d18c5471fdd032 (diff) | |
| download | emacs-ca3cf0a561302e2a94eb0ab24063e29580a97fe1.tar.gz emacs-ca3cf0a561302e2a94eb0ab24063e29580a97fe1.zip | |
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.
| -rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/gnus/shr.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/smiley.el | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 6ed5a3fdcf4..4aba3a27900 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2011-05-29 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly | ||
| 4 | at the end of lines. | ||
| 5 | |||
| 6 | 2011-05-29 Julien Danjou <julien@danjou.info> | ||
| 7 | |||
| 8 | * smiley.el (gnus-smiley-file-types): Add gif as supported file type. | ||
| 9 | |||
| 1 | 2011-05-27 Glenn Morris <rgm@gnu.org> | 10 | 2011-05-27 Glenn Morris <rgm@gnu.org> |
| 2 | 11 | ||
| 3 | * gnus-group.el (gnus-bug-group-download-format-alist): | 12 | * gnus-group.el (gnus-bug-group-download-format-alist): |
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el index d23d9c7724b..ebd854930df 100644 --- a/lisp/gnus/shr.el +++ b/lisp/gnus/shr.el | |||
| @@ -601,7 +601,7 @@ START, and END. Note that START and END should be merkers." | |||
| 601 | :help-echo (if title (format "%s (%s)" url title) url) | 601 | :help-echo (if title (format "%s (%s)" url title) url) |
| 602 | :keymap shr-map | 602 | :keymap shr-map |
| 603 | url) | 603 | url) |
| 604 | (put-text-property start (point) 'face 'shr-link) | 604 | (shr-add-font start (point) 'shr-link) |
| 605 | (put-text-property start (point) 'shr-url url)) | 605 | (put-text-property start (point) 'shr-url url)) |
| 606 | 606 | ||
| 607 | (defun shr-encode-url (url) | 607 | (defun shr-encode-url (url) |
diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index 2f5c74220ea..cf23deb174b 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el | |||
| @@ -133,9 +133,11 @@ regexp to replace with IMAGE. IMAGE is the name of an image file in | |||
| 133 | (let ((types (list "pbm"))) | 133 | (let ((types (list "pbm"))) |
| 134 | (when (gnus-image-type-available-p 'xpm) | 134 | (when (gnus-image-type-available-p 'xpm) |
| 135 | (push "xpm" types)) | 135 | (push "xpm" types)) |
| 136 | (when (gnus-image-type-available-p 'gif) | ||
| 137 | (push "gif" types)) | ||
| 136 | types) | 138 | types) |
| 137 | "*List of suffixes on smiley file names to try." | 139 | "*List of suffixes on smiley file names to try." |
| 138 | :version "22.1" | 140 | :version "24.1" |
| 139 | :type '(repeat string) | 141 | :type '(repeat string) |
| 140 | :group 'smiley) | 142 | :group 'smiley) |
| 141 | 143 | ||