diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-11 16:55:30 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-11 16:55:30 +1100 |
commit | 00cc327b9d7f2b90b10ec45f111dcc670dbbb102 (patch) | |
tree | 714a3e885db189c58818ec6787480f7d795649c2 /lisp/gnus/gnus-uu.el | |
parent | efbaf95619cad8b9dc911c0393a004f225d44cec (diff) | |
download | emacs-00cc327b9d7f2b90b10ec45f111dcc670dbbb102.tar.gz emacs-00cc327b9d7f2b90b10ec45f111dcc670dbbb102.tar.bz2 emacs-00cc327b9d7f2b90b10ec45f111dcc670dbbb102.zip |
Remove more XEmacs compat code from Gnus
* lisp/gnus/gnus-util.el (gnus-bound-and-true-p): Remove.
(gnus-timer--function): Remove.
* lisp/gnus/gnus-uu.el (gnus-uu-save-article): Remove XEmacs
19.2 compat.
* lisp/gnus/gnus-win.el: Remove XEmacs compat code.
Diffstat (limited to 'lisp/gnus/gnus-uu.el')
-rw-r--r-- | lisp/gnus/gnus-uu.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/gnus/gnus-uu.el b/lisp/gnus/gnus-uu.el index 416567ed285..1a249e95584 100644 --- a/lisp/gnus/gnus-uu.el +++ b/lisp/gnus/gnus-uu.el @@ -876,10 +876,7 @@ When called interactively, prompt for REGEXP." (with-current-buffer buffer (save-restriction (let ((inhibit-read-only t)) - (set-text-properties (point-min) (point-max) nil) - ;; These two are necessary for XEmacs 19.12 fascism. - (put-text-property (point-min) (point-max) 'invisible nil) - (put-text-property (point-min) (point-max) 'intangible nil)) + (set-text-properties (point-min) (point-max) nil)) (when (and message-forward-as-mime message-forward-show-mml gnus-uu-digest-buffer) |