1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-23 04:53:12 -08:00

Extend Tramp traces

* lisp/net/tramp-message.el (tramp-debug-message):
Change selection for `trace-function-background'.
This commit is contained in:
Michael Albinus 2026-01-20 12:31:51 +01:00
parent 8f96f5ffb5
commit a32ee5026b

View file

@ -240,8 +240,10 @@ ARGUMENTS to actually emit the message (if applicable)."
(dolist
(elt
(append
(mapcar
#'intern (all-completions "tramp-" obarray #'functionp))
(apropos-internal (rx bos "tramp-") #'functionp)
(apropos-internal (rx bos "tramp-") #'macrop)
(apropos-internal
(rx bos "with-" (? "parsed-") "tramp-") #'macrop)
tramp-trace-functions))
(unless (get elt 'tramp-suppress-trace)
(trace-function-background elt (tramp-trace-buffer-name vec)))))