aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-art.el8
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index a294b4c42e2..31a60b43724 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12014-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
4
12014-08-06 Katsumi Yamaoka <yamaoka@jpl.org> 52014-08-06 Katsumi Yamaoka <yamaoka@jpl.org>
2 6
3 * gnus-sum.el (gnus-summary-expire-articles): Revert. 7 * gnus-sum.el (gnus-summary-expire-articles): Revert.
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index b08e523c440..bbfe55c5d84 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -253,7 +253,13 @@ This can also be a list of the above values."
253 (regexp :value ".*")) 253 (regexp :value ".*"))
254 :group 'gnus-article-signature) 254 :group 'gnus-article-signature)
255 255
256(defcustom gnus-hidden-properties '(invisible t intangible t) 256(defcustom gnus-hidden-properties
257 (if (featurep 'xemacs)
258 ;; `intangible' is evil, but I keep it here in case it's useful.
259 '(invisible t intangible t)
260 ;; Emacs's command loop moves point out of invisible text anyway, so
261 ;; `intangible' is clearly not needed there.
262 '(invisible t))
257 "Property list to use for hiding text." 263 "Property list to use for hiding text."
258 :type 'sexp 264 :type 'sexp
259 :group 'gnus-article-hiding) 265 :group 'gnus-article-hiding)