;; ;; I typed (dribble "dribble.txt") at the prompt, and the rest of the ;; text went to that file, a record of everything I did up to and ;; including the (dribble) that shuts off the log. ;; * (member 'a '(b (a))) NIL * (describe 'dribble) DRIBBLE is an external symbol in the COMMON-LISP package. Function: # Function arguments: (&optional pathname &key (if-exists :append)) Function documentation: With a file name as an argument, dribble opens the file and sends a record of further I/O to that file. Without an argument, it closes the dribble file, and quits logging. Its declared argument types are: (&OPTIONAL (OR BASE-STRING PATHNAME) &KEY (:IF-EXISTS T)) Its result type is: (VALUES) On Thursday, 8/9/01 12:27:15 am CDT it was compiled from: target:code/misc.lisp Created: Tuesday, 7/24/01 04:30:37 pm CDT Comment: $Header: /home/CVS-cmucl/src/code/misc.lisp,v 1.29 2001/07/08 16:28:09 pw Exp $ * (dribble)