aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2025-04-06 09:11:06 +0200
committerMichael Albinus2025-04-06 09:11:06 +0200
commitbb756b195a7bc6b4cf3286d891a38459dac23cde (patch)
treefa63fd1dcbc3d2d022173dc2546b592ef58d5818
parent684adc07c28ce96b8da1fa2bea31dbf0c8833d92 (diff)
downloademacs-bb756b195a7bc6b4cf3286d891a38459dac23cde.tar.gz
emacs-bb756b195a7bc6b4cf3286d891a38459dac23cde.zip
; Fix typo in Tramp
* lisp/net/tramp-cache.el (with-tramp-saved-connection-property): Fix typo.
-rw-r--r--lisp/net/tramp-cache.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el
index 71b8cfa67bf..87e7feae188 100644
--- a/lisp/net/tramp-cache.el
+++ b/lisp/net/tramp-cache.el
@@ -473,10 +473,10 @@ used to cache connection properties of the local machine."
473 (hash (tramp-get-hash-table key)) 473 (hash (tramp-get-hash-table key))
474 (cached (and (hash-table-p hash) 474 (cached (and (hash-table-p hash)
475 (gethash ,property hash tramp-cache-undefined)))) 475 (gethash ,property hash tramp-cache-undefined))))
476 (tramp-message key 7 "Saved %s %s" property cached) 476 (tramp-message key 7 "Saved %s %s" ,property cached)
477 (unwind-protect (progn ,@body) 477 (unwind-protect (progn ,@body)
478 ;; Reset PROPERTY. Recompute hash, it could have been flushed. 478 ;; Reset PROPERTY. Recompute hash, it could have been flushed.
479 (tramp-message key 7 "Restored %s %s" property cached) 479 (tramp-message key 7 "Restored %s %s" ,property cached)
480 (setq hash (tramp-get-hash-table key)) 480 (setq hash (tramp-get-hash-table key))
481 (if (not (eq cached tramp-cache-undefined)) 481 (if (not (eq cached tramp-cache-undefined))
482 (puthash ,property cached hash) 482 (puthash ,property cached hash)