diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-08-11 22:47:36 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-08-11 22:47:36 -0400 |
commit | dfd4d9b742bed1421c86fecf84a633747b444447 (patch) | |
tree | f34a9cb92f7e806721c72b5ad1aef07d964c23a7 | |
parent | eb7b19f0134d298ee4e465e9e035bc9002fea06b (diff) | |
download | emacs-dfd4d9b742bed1421c86fecf84a633747b444447.tar.gz |
* lisp/gnus/gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
-rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/gnus/gnus-art.el | 8 |
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 @@ +2014-08-12 Stefan Monnier <monnier@iro.umontreal.ca> + + * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'. + 2014-08-06 Katsumi Yamaoka <yamaoka@jpl.org> * 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." (regexp :value ".*")) :group 'gnus-article-signature) -(defcustom gnus-hidden-properties '(invisible t intangible t) +(defcustom gnus-hidden-properties + (if (featurep 'xemacs) + ;; `intangible' is evil, but I keep it here in case it's useful. + '(invisible t intangible t) + ;; Emacs's command loop moves point out of invisible text anyway, so + ;; `intangible' is clearly not needed there. + '(invisible t)) "Property list to use for hiding text." :type 'sexp :group 'gnus-article-hiding) |