diff options
| author | Richard M. Stallman | 2006-08-31 23:10:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-08-31 23:10:24 +0000 |
| commit | 5b061d28eb0ceea29ce05f7769ab65a6a978fcd5 (patch) | |
| tree | 8bd0ce1d6ebebc84e214fa0b710d1a04582c47d9 | |
| parent | 80e0572b0e377ce850179f20700a9dd44e5d8b67 (diff) | |
| download | emacs-5b061d28eb0ceea29ce05f7769ab65a6a978fcd5.tar.gz emacs-5b061d28eb0ceea29ce05f7769ab65a6a978fcd5.zip | |
(trace-function-background): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/trace.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/trace.el b/lisp/emacs-lisp/trace.el index 1ebf1186c2d..191be58c0b5 100644 --- a/lisp/emacs-lisp/trace.el +++ b/lisp/emacs-lisp/trace.el | |||
| @@ -265,11 +265,14 @@ display oriented stuff, use `trace-function-background' instead." | |||
| 265 | ;;;###autoload | 265 | ;;;###autoload |
| 266 | (defun trace-function-background (function &optional buffer) | 266 | (defun trace-function-background (function &optional buffer) |
| 267 | "Traces FUNCTION with trace output going quietly to BUFFER. | 267 | "Traces FUNCTION with trace output going quietly to BUFFER. |
| 268 | For every call of FUNCTION Lisp-style trace messages that display argument | 268 | When this tracing is enabled, every call to FUNCTION writes |
| 269 | and return values will be inserted into BUFFER. This function generates the | 269 | a Lisp-style trace message (showing the arguments and return value) |
| 270 | trace advice for FUNCTION and activates it together with any other advice | 270 | into BUFFER. This function generates advice to trace FUNCTION |
| 271 | there might be!! Trace output will quietly go to BUFFER without changing | 271 | and activates it together with any other advice there might be. |
| 272 | the window or buffer configuration at all." | 272 | The trace output goes to BUFFER quietly, without changing |
| 273 | the window or buffer configuration. | ||
| 274 | |||
| 275 | BUFFER defaults to `trace-buffer'." | ||
| 273 | (interactive | 276 | (interactive |
| 274 | (list | 277 | (list |
| 275 | (intern | 278 | (intern |