summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-01-12 06:28:19 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2022-01-12 06:28:19 +0100
commit552d58d5b96eaad1c036800d8b4af10cb6f2f823 (patch)
treeecad5cc8434f348a931245e831cafe43f28b904e
parent8555a3e1ed1d34cbaa172bde86eb3b11a1cd7940 (diff)
downloademacs-552d58d5b96eaad1c036800d8b4af10cb6f2f823.tar.gz
Don't do Gnus article emphasis in text/html parts
* lisp/gnus/gnus-art.el (gnus-treat-emphasize): Don't do emphasis in text/html parts, because this leads to mis-filled text (especially with *...* that's boldified, which typically becomes much wider).
-rw-r--r--lisp/gnus/gnus-art.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index f26ab6ab4c7..a286c446724 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -1159,13 +1159,15 @@ predicate. See Info node `(gnus)Customizing Articles'."
:link '(custom-manual "(gnus)Customizing Articles")
:type gnus-article-treat-head-custom)
-(defcustom gnus-treat-emphasize 50000
+(defcustom gnus-treat-emphasize '(and 50000
+ (not (typep "text/html")))
"Emphasize text.
Valid values are nil, t, `head', `first', `last', an integer or a
predicate. See Info node `(gnus)Customizing Articles'."
:group 'gnus-article-treat
:link '(custom-manual "(gnus)Customizing Articles")
- :type gnus-article-treat-custom)
+ :type gnus-article-treat-custom
+ :version "29.1")
(put 'gnus-treat-emphasize 'highlight t)
(defcustom gnus-treat-strip-cr nil