Changeset 821


Ignore:
Timestamp:
Jun 5, 2004, 10:55:54 PM (20 years ago)
Author:
Gary Byers
Message:

:prompt-function takes an argument.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/describe.lisp

    r784 r821  
    20392039         (ccl::with-toplevel-commands :tty-inspect
    20402040           (ccl::read-loop
    2041             :prompt-function #'(lambda ()
     2041            :prompt-function #'(lambda (stream)
    20422042                                 (if (eql level 0)
    2043                                    (format t "~&Inspect> ")
    2044                                    (format t "~&Inspect ~d> " level))))))
     2043                                   (format stream "~&Inspect> ")
     2044                                   (format stream "~&Inspect ~d> " level))))))
    20452045     (exit-inspector () (terpri *debug-io*)))))
    20462046
Note: See TracChangeset for help on using the changeset viewer.