]> git.eshelyaron.com Git - emacs.git/commitdiff
(url-file-create-wrapper): Use new backquote syntax.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 Apr 2004 21:59:12 +0000 (21:59 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 Apr 2004 21:59:12 +0000 (21:59 +0000)
(url-file-file-attributes): Add id-format parameter.

lisp/url/url-file.el

index 4dfac46b65199743192ebbf4fdba5a83084a662a..77c2e74555fd7a0f1a3fe5cdf1f3383c0c8bef59 100644 (file)
@@ -220,14 +220,14 @@ to them."
     buffer))
 
 (defmacro url-file-create-wrapper (method args)
-  (` (defalias (quote (, (intern (format "url-ftp-%s" method))))
-       (defun (, (intern (format "url-file-%s" method))) (, args)
-        (, (format "FTP/FILE URL wrapper around `%s' call." method))
-        (setq url (url-file-build-filename url))
-        (and url ((, method) (,@ (remove '&rest (remove '&optional args)))))))))
+  `(defalias ',(intern (format "url-ftp-%s" method))
+     (defun ,(intern (format "url-file-%s" method)) ,args
+       ,(format "FTP/FILE URL wrapper around `%s' call." method)
+       (setq url (url-file-build-filename url))
+       (and url (,method ,@(remove '&rest (remove '&optional args)))))))
 
 (url-file-create-wrapper file-exists-p (url))
-(url-file-create-wrapper file-attributes (url))
+(url-file-create-wrapper file-attributes (url &optional id-format))
 (url-file-create-wrapper file-symlink-p (url))
 (url-file-create-wrapper file-readable-p (url))
 (url-file-create-wrapper file-writable-p (url))