aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2007-10-23 21:54:24 +0000
committerMichael Albinus2007-10-23 21:54:24 +0000
commit03b5badef899c9125306e203370f02037cc47cc0 (patch)
tree21f241e4e4824b44d6075f5568fae7e7bc808df2
parentd720f96e93d4d01d63951224e4bf8355b49a1c13 (diff)
downloademacs-03b5badef899c9125306e203370f02037cc47cc0.tar.gz
emacs-03b5badef899c9125306e203370f02037cc47cc0.zip
* tramp.texi (Traces and Profiles): Simplify loop over
`trace-function-background'.
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/tramp.texi5
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index b2abdb9527d..94ec52a8392 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12007-10-23 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (Traces and Profiles): Simplify loop over
4 `trace-function-background'.
5
12007-10-22 Juri Linkov <juri@jurta.org> 62007-10-22 Juri Linkov <juri@jurta.org>
2 7
3 * dired-x.texi (Shell Command Guessing): Default values are now 8 * dired-x.texi (Shell Command Guessing): Default values are now
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 7a3cc923e95..2e37c2206c9 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -3288,9 +3288,8 @@ function call traces. Such traces are enabled by the following code:
3288@lisp 3288@lisp
3289(require 'tramp) 3289(require 'tramp)
3290(require 'trace) 3290(require 'trace)
3291(mapcar 'trace-function-background 3291(dolist (elt (all-completions "tramp-" obarray 'functionp))
3292 (mapcar 'intern 3292 (trace-function-background (intern elt)))
3293 (all-completions "tramp-" obarray 'functionp)))
3294(untrace-function 'tramp-read-passwd) 3293(untrace-function 'tramp-read-passwd)
3295(untrace-function 'tramp-gw-basic-authentication) 3294(untrace-function 'tramp-gw-basic-authentication)
3296@end lisp 3295@end lisp