diff lisp/gnus/gnus-art.el @ 62978:c0f8b7d7e2ae

(gnus-emphasis-alist): Disable the strikethru thingy.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 03 Jun 2005 22:03:47 +0000
parents 11d53dd5abd9
children 81ee906cdd23
line wrap: on
line diff
--- a/lisp/gnus/gnus-art.el	Fri Jun 03 15:03:02 2005 +0000
+++ b/lisp/gnus/gnus-art.el	Fri Jun 03 22:03:47 2005 +0000
@@ -367,8 +367,12 @@
 		      (or (nth 4 spec) 3)
 		      (intern (format "gnus-emphasis-%s" (nth 2 spec)))))
 	      types))
-     '(("\\(\\s-\\|^\\)\\(-\\(\\(\\w\\|-[^-]\\)+\\)-\\)\\(\\s-\\|[?!.,;]\\)"
-	2 3 gnus-emphasis-strikethru)
+     '(;; I've never seen anyone use this strikethru convention whereas I've
+       ;; several times seen it triggered by normal text.  --Stef
+       ;; Miles suggests that this form is sometimes used but for italics,
+       ;; so maybe we should map it to `italic'.
+       ;; ("\\(\\s-\\|^\\)\\(-\\(\\(\\w\\|-[^-]\\)+\\)-\\)\\(\\s-\\|[?!.,;]\\)"
+       ;; 2 3 gnus-emphasis-strikethru)
        ("\\(\\s-\\|^\\)\\(_\\(\\(\\w\\|_[^_]\\)+\\)_\\)\\(\\s-\\|[?!.,;]\\)"
 	2 3 gnus-emphasis-underline))))
   "*Alist that says how to fontify certain phrases.