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-file.el | |
parent | 8198ba6e61d9629e25b220f1b2f900bbf5fceb7b (diff) | |
download | emacs-cc38a294160ba6f41468f69bb33ef5a93a48d323.tar.gz emacs-cc38a294160ba6f41468f69bb33ef5a93a48d323.tar.bz2 emacs-cc38a294160ba6f41468f69bb33ef5a93a48d323.zip |
Remove XEmacs conditionals.
Diffstat (limited to 'lisp/url/url-file.el')
-rw-r--r-- | lisp/url/url-file.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el index 44a4f8bd9f4..64766930c43 100644 --- a/lisp/url/url-file.el +++ b/lisp/url/url-file.el @@ -230,12 +230,8 @@ to them." (url-file-create-wrapper file-readable-p (url)) (url-file-create-wrapper file-writable-p (url)) (url-file-create-wrapper file-executable-p (url)) -(if (featurep 'xemacs) - (progn - (url-file-create-wrapper directory-files (url &optional full match nosort files-only)) - (url-file-create-wrapper file-truename (url &optional default))) - (url-file-create-wrapper directory-files (url &optional full match nosort)) - (url-file-create-wrapper file-truename (url &optional counter prev-dirs))) +(url-file-create-wrapper directory-files (url &optional full match nosort)) +(url-file-create-wrapper file-truename (url &optional counter prev-dirs)) (provide 'url-file) |