[gnus git] branch master updated: m0-11-37-g21a85c7 =1= gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'

Katsumi Yamaoka <[email protected]> Tue, 12 Aug 2014 12:49:47 +0200
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  21a85c7b95dac62c033603271ee5272c9fc12013 (commit)
      from  5a6daec1cdd8f497dde094ee9e3fdc805f507195 (commit)


- Log -----------------------------------------------------------------
commit 21a85c7b95dac62c033603271ee5272c9fc12013
Author: Stefan Monnier <[email protected]>
Date:   Tue Aug 12 10:49:31 2014 +0000

    gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9dfbf46..3307433 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2014-08-12  Stefan Monnier  <[email protected]>
+
+	* gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
+
 2014-08-06  Katsumi Yamaoka  <[email protected]>
 
 	* gnus-sum.el (gnus-summary-expire-articles): Revert.
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 36bb79c..d55c703 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -254,7 +254,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)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog   |    4 ++++
 lisp/gnus-art.el |    8 +++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
-- 
Gnus Project