]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert an erroneous change in tramp-cache.el
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 3 Feb 2022 14:30:39 +0000 (15:30 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 3 Feb 2022 14:30:39 +0000 (15:30 +0100)
* lisp/net/tramp-cache.el (tramp-get-hash-table):
Use `string-match-p' instead of `string-search'.  The latter one
was introduced by accident.  Reported by Kai Tetzlaff <kai@tetzlaff.eu>.

lisp/net/tramp-cache.el

index fc8f04f52733bc6f80688ce0ee132a6a548d897f..d35f7ffa4e311c243f7938a96a677b18f65b9413 100644 (file)
@@ -125,7 +125,7 @@ If KEY is `tramp-cache-undefined', don't create anything, and return nil."
               (puthash key (make-hash-table :test #'equal) tramp-cache-data)))
          (when (tramp-file-name-p key)
            (dolist (elt tramp-connection-properties)
-             (when (tramp-compat-string-search
+             (when (string-match-p
                     (or (nth 0 elt) "")
                     (tramp-make-tramp-file-name key 'noloc 'nohop))
                (tramp-set-connection-property key (nth 1 elt) (nth 2 elt)))))