[gnus git] branch master updated: n0-17-21-g4872ab1 =1= Small fix, but shr-urlify+shr-link face is still broken.
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 4872ab1ec2c8779072bea9c2f9f531c18a864ba6 (commit)
from cb84751f9627a82a3b17e5b9edfdbac9e65a573a (commit)
- Log -----------------------------------------------------------------
commit 4872ab1ec2c8779072bea9c2f9f531c18a864ba6
Author: Ted Zlatanov <[email protected]>
Date: Thu May 5 08:28:53 2011 -0500
Small fix, but shr-urlify+shr-link face is still broken.
* shr.el (shr-urlify, shr-link): Still broken but at least doesn't
error out because the face is not a list.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d83a052..5d0972f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-05 Teodor Zlatanov <[email protected]>
+
+ * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
+ error out because the face is not a list.
+
2011-05-05 Glenn Morris <[email protected]>
* proto-stream.el (gnutls-negotiate): Fix declarations.
diff --git a/lisp/shr.el b/lisp/shr.el
index d865b2d..d8f33c8 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
@@ -94,7 +94,7 @@ cid: URL as the argument.")
(defface shr-link '((t (:underline t)
(:foreground "yellow")
(:background "black")))
- "Font for <s> elements."
+ "Font for link elements."
:group 'shr)
;;; Internal variables.
@@ -597,7 +597,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)
+ (put-text-property start (point) 'face '(shr-link))
(put-text-property start (point) 'shr-url url))
(defun shr-encode-url (url)
-----------------------------------------------------------------------
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 | 5 +++++
lisp/shr.el | 4 ++--
2 files changed, 7 insertions(+), 2 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