aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2015-02-11 05:58:14 +0000
committerKatsumi Yamaoka2015-02-11 05:58:14 +0000
commit097e16e26663c1010db6f6dc2db7b5f1b7a4dbc0 (patch)
tree11895ffa6bf8e22084a3955ae2743bda3b9eebdd
parente6929b0b8a3c4a10023f700c6121f9e0b182aa8a (diff)
downloademacs-097e16e26663c1010db6f6dc2db7b5f1b7a4dbc0.tar.gz
emacs-097e16e26663c1010db6f6dc2db7b5f1b7a4dbc0.zip
lisp/gnus/gnus-art.el (gnus-treat-buttonize): Don't buttonize URLs in HTML
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-art.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 94a55f4bf4e..f21d01f9fef 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12015-02-11 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * gnus-art.el (gnus-treat-buttonize): Don't re-buttonize URLs in HTML
4 parts, because that breaks filling (since buttons are in a bold face).
5
12015-02-10 Katsumi Yamaoka <yamaoka@jpl.org> 62015-02-10 Katsumi Yamaoka <yamaoka@jpl.org>
2 7
3 * mm-decode.el (mm-convert-shr-links): Delete useless variable `face'; 8 * mm-decode.el (mm-convert-shr-links): Delete useless variable `face';
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 557c6a3a4ab..4ad0601099d 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -1139,7 +1139,7 @@ predicate. See Info node `(gnus)Customizing Articles'."
1139 :type gnus-article-treat-custom) 1139 :type gnus-article-treat-custom)
1140(put 'gnus-treat-highlight-signature 'highlight t) 1140(put 'gnus-treat-highlight-signature 'highlight t)
1141 1141
1142(defcustom gnus-treat-buttonize 100000 1142(defcustom gnus-treat-buttonize '(and 100000 (typep "text/plain"))
1143 "Add buttons. 1143 "Add buttons.
1144Valid values are nil, t, `head', `first', `last', an integer or a 1144Valid values are nil, t, `head', `first', `last', an integer or a
1145predicate. See Info node `(gnus)Customizing Articles'." 1145predicate. See Info node `(gnus)Customizing Articles'."