This file describes things in the current release that are not in the
paper presented at the Tcl/Tk Conference (see README).

User Interface Changes ---------------------------------------------------

-- The N command is useful for stepping over Tcl_Eval calls that are not
inside a procedure or command.  For instance, if you are about to
executed a "source" command, n will stop at the first command inside
the sourced file while N will stop after the source is complete.

Tcl-Application Interface Changes ----------------------------------------

-- The function Dbg_Init makes the debugger trivial to drop into
applications.  It works like other App_Init functions, taking an
interp argument and returning TCL_OK.  Dbg_Init creates a command
called "debug" in the current interpreter.

This will add a "debug" command to your interpreter.  (Inside your
application, "debug 1" will start the interpreter.  "debug 0" will
stop it.

You can also use give the command a different name (see the INSTALL
file for more info).

-- The function Dbg_Output was created to send all debugger output
somewhere other than the standard output.  For example, if you want to
run it inside of Tk and send it to a window, you can do this.
Dbg_Output takes an interp and a Dbg_OutputProc as an argument.
Dbg_OutputProc takes an interp and the string to be output as
arguments.
