* tramp.texi (Traces and Profiles): Simplify loop over

`trace-function-background'.
This commit is contained in:
Michael Albinus 2007-10-23 21:54:24 +00:00
parent d720f96e93
commit 03b5badef8
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2007-10-23 Michael Albinus <michael.albinus@gmx.de>
* tramp.texi (Traces and Profiles): Simplify loop over
`trace-function-background'.
2007-10-22 Juri Linkov <juri@jurta.org>
* dired-x.texi (Shell Command Guessing): Default values are now

View file

@ -3288,9 +3288,8 @@ function call traces. Such traces are enabled by the following code:
@lisp
(require 'tramp)
(require 'trace)
(mapcar 'trace-function-background
(mapcar 'intern
(all-completions "tramp-" obarray 'functionp)))
(dolist (elt (all-completions "tramp-" obarray 'functionp))
(trace-function-background (intern elt)))
(untrace-function 'tramp-read-passwd)
(untrace-function 'tramp-gw-basic-authentication)
@end lisp