[gnus git] branch master updated: n0-17-56-g3567376 =1= smiley: add gif in supported types
Julien Danjou <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 3567376ac6333f1a35e71f1bf8eec9fb0d9f4fba (commit)
from f822e735d055da68b7b7b38bcbb9099262855f19 (commit)
- Log -----------------------------------------------------------------
commit 3567376ac6333f1a35e71f1bf8eec9fb0d9f4fba
Author: Julien Danjou <[email protected]>
Date: Sun May 29 14:52:14 2011 +0200
smiley: add gif in supported types
Signed-off-by: Julien Danjou <[email protected]>
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a104525..be0a75c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-05-29 Julien Danjou <[email protected]>
+
+ * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
+
2011-05-27 Glenn Morris <[email protected]>
* gnus-group.el (gnus-bug-group-download-format-alist):
diff --git a/lisp/smiley.el b/lisp/smiley.el
index 2f5c742..cf23deb 100644
--- a/lisp/smiley.el
+++ b/lisp/smiley.el
@@ -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)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 4 ++++
lisp/smiley.el | 4 +++-
2 files changed, 7 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project