diff options
Diffstat (limited to 'lisp/net/tramp-cache.el')
-rw-r--r-- | lisp/net/tramp-cache.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el index b81a1a23d5f..62e25fa1f08 100644 --- a/lisp/net/tramp-cache.el +++ b/lisp/net/tramp-cache.el @@ -373,7 +373,7 @@ used to cache connection properties of the local machine." (let ((hash (gethash key tramp-cache-data)) properties) (when (hash-table-p hash) - (maphash (lambda (x _y) (add-to-list 'properties x 'append)) hash)) + (maphash (lambda (x _y) (push x properties)) hash)) properties)) (setq tramp-cache-data-changed t) (remhash key tramp-cache-data)) @@ -427,7 +427,7 @@ used to cache connection properties of the local machine." (when (and (tramp-file-name-p key) (null (tramp-file-name-localname key)) (tramp-connection-property-p key "process-buffer")) - (add-to-list 'result key))) + (push key result))) tramp-cache-data) result)) |