diff options
author | Eli Zaretskii <eliz@gnu.org> | 2005-10-20 14:17:14 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2005-10-20 14:17:14 +0000 |
commit | cc38a294160ba6f41468f69bb33ef5a93a48d323 (patch) | |
tree | d601a3b4fb193d5294e30125a200f0b06c9aa905 /lisp/url/url-nfs.el | |
parent | 8198ba6e61d9629e25b220f1b2f900bbf5fceb7b (diff) | |
download | emacs-cc38a294160ba6f41468f69bb33ef5a93a48d323.tar.gz |
Remove XEmacs conditionals.
Diffstat (limited to 'lisp/url/url-nfs.el')
-rw-r--r-- | lisp/url/url-nfs.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/url/url-nfs.el b/lisp/url/url-nfs.el index 858cd029a85..e6822efc242 100644 --- a/lisp/url/url-nfs.el +++ b/lisp/url/url-nfs.el @@ -87,12 +87,8 @@ Each can be used any number of times.") (url-nfs-create-wrapper file-readable-p (url)) (url-nfs-create-wrapper file-writable-p (url)) (url-nfs-create-wrapper file-executable-p (url)) -(if (featurep 'xemacs) - (progn - (url-nfs-create-wrapper directory-files (url &optional full match nosort files-only)) - (url-nfs-create-wrapper file-truename (url &optional default))) - (url-nfs-create-wrapper directory-files (url &optional full match nosort)) - (url-nfs-create-wrapper file-truename (url &optional counter prev-dirs))) +(url-nfs-create-wrapper directory-files (url &optional full match nosort)) +(url-nfs-create-wrapper file-truename (url &optional counter prev-dirs)) (provide 'url-nfs) |