Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dfd4d9b7
Commit
dfd4d9b7
authored
Aug 11, 2014
by
Stefan Monnier
Browse files
* lisp/gnus/gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
parent
eb7b19f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/gnus-art.el
lisp/gnus/gnus-art.el
+7
-1
No files found.
lisp/gnus/ChangeLog
View file @
dfd4d9b7
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.
...
...
lisp/gnus/gnus-art.el
View file @
dfd4d9b7
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment