]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix thinko in tramp-gvfs-maybe-open-connection
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 27 Apr 2023 17:41:18 +0000 (19:41 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 27 Apr 2023 17:41:18 +0000 (19:41 +0200)
* lisp/net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
Use `assoc-default'.

lisp/net/tramp-gvfs.el

index ad7b1ff054c121e44f29b5ad43d353f9eb2007ba..859f4870b803bd04f1a13da94a24fcb376190167 100644 (file)
@@ -2183,11 +2183,12 @@ connection if a previous connection has died for some reason."
   ;; Sanity check.
   (let ((method (tramp-file-name-method vec)))
     (unless (member
-            (or (rassoc method '(("smb" . "smb-share")
-                                 ("davs" . "dav")
-                                 ("nextcloud" . "dav")
-                                 ("afp". "afp-volume")
-                                 ("gdrive" . "google-drive")))
+            (or (assoc-default
+                 method '(("smb" . "smb-share")
+                          ("davs" . "dav")
+                          ("nextcloud" . "dav")
+                          ("afp". "afp-volume")
+                          ("gdrive" . "google-drive")))
                 method)
             tramp-gvfs-mounttypes)
       (tramp-error vec 'file-error "Method `%s' not supported by GVFS" method)))