diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:58:41 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-13 17:58:41 +1100 |
commit | ea03ab9662b4e4f317c5dbcc3cbbd8c435bdc97f (patch) | |
tree | d1efa15ef5e04dd716299bd532a3b826a5ae6cba /lisp/gnus/gnus-uu.el | |
parent | 9efc29a2dfda67c2e6b6693a6cb06a19fbdccaeb (diff) | |
download | emacs-ea03ab9662b4e4f317c5dbcc3cbbd8c435bdc97f.tar.gz emacs-ea03ab9662b4e4f317c5dbcc3cbbd8c435bdc97f.tar.bz2 emacs-ea03ab9662b4e4f317c5dbcc3cbbd8c435bdc97f.zip |
Remove compat code from gnus-uu and win
* lisp/gnus/gnus-util.el (gnus-image-type-available-p): Remove
compat code.
* lisp/gnus/gnus-uu.el (gnus-uu-tmp-dir): Remove compat code.
* lisp/gnus/gnus-win.el (gnus-frames-on-display-list): Remove.
Diffstat (limited to 'lisp/gnus/gnus-uu.el')
-rw-r--r-- | lisp/gnus/gnus-uu.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/gnus/gnus-uu.el b/lisp/gnus/gnus-uu.el index 6a0c8f950b9..f199d1659d9 100644 --- a/lisp/gnus/gnus-uu.el +++ b/lisp/gnus/gnus-uu.el @@ -217,11 +217,8 @@ Note that this variable can be used in conjunction with the ;; Various variables users may set -(defcustom gnus-uu-tmp-dir - (cond ((fboundp 'temp-directory) (temp-directory)) - ((boundp 'temporary-file-directory) temporary-file-directory) - ("/tmp/")) - "*Variable saying where gnus-uu is to do its work. +(defcustom gnus-uu-tmp-dir temporary-file-directory + "Variable saying where gnus-uu is to do its work. Default is \"/tmp/\"." :group 'gnus-extract :type 'directory) |