Synch to Gnus 200310221225.
authoryamaoka <yamaoka>
Wed, 22 Oct 2003 12:29:22 +0000 (12:29 +0000)
committeryamaoka <yamaoka>
Wed, 22 Oct 2003 12:29:22 +0000 (12:29 +0000)
lisp/ChangeLog
lisp/gnus-art.el

index 070461b..ff7f4f2 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-art.el (gnus-emphasis-strikethru): Use the :strike-through
+       attribute in Emacs.
+
 2003-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * message.el (message-bounce): Don't erase except bounced header.
index 21ddb51..5d0c58f 100644 (file)
@@ -434,7 +434,9 @@ and the latter avoids underlining any whitespace at all."
 Example: (_/*word*/_)."
   :group 'gnus-article-emphasis)
 
-(defface gnus-emphasis-strikethru '((t (:strikethru t)))
+(defface gnus-emphasis-strikethru (if (featurep 'xemacs)
+                                     '((t (:strikethru t)))
+                                   '((t (:strike-through t))))
   "Face used for displaying strike-through text (-word-)."
   :group 'gnus-article-emphasis)