]> git.eshelyaron.com Git - emacs.git/commitdiff
shr.el (shr-urlify, shr-link): Still broken but at least doesn't error out because...
authorTeodor Zlatanov <tzz@lifelogs.com>
Thu, 5 May 2011 22:12:41 +0000 (22:12 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 5 May 2011 22:12:41 +0000 (22:12 +0000)
lisp/gnus/ChangeLog
lisp/gnus/shr.el

index 2e8df577f615cec455c64c9347622908c6277a9d..a0dab93bca09ee2045eac2c4985c9305e6d7682f 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * 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  <rgm@gnu.org>
 
        * gnus-start.el (gnus-propagate-marks): Declare.
index d865b2d6087c4d712d28491630d16a528fe6802f..d8f33c830c703812e2b6d4fb3adc4b3834648c6b 100644 (file)
@@ -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)