diff options
author | Araq <rumpf_a@web.de> | 2013-03-16 17:07:47 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-03-16 17:07:47 +0100 |
commit | b63f322a466351bc57f8a4593009f0520c348527 (patch) | |
tree | ac80f1cd1a7c8b7b058ef51673dd65593a7dd827 /doc | |
parent | 78b27ed7fa121d2cb032fa1b74ae434034bf8e23 (diff) | |
download | Nim-b63f322a466351bc57f8a4593009f0520c348527.tar.gz |
debugger improvements
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/endb.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/endb.txt b/doc/endb.txt index 900553f0e..d4437e5d9 100755 --- a/doc/endb.txt +++ b/doc/endb.txt @@ -61,8 +61,8 @@ Executing Commands Breakpoint Commands =================== -``b``, ``setbreak`` <identifier> [fromline [toline]] [file] - Set a new breakpoint named 'identifier' for the given file +``b``, ``setbreak`` [fromline [toline]] [file] + Set a new breakpoint for the given file and line numbers. If no file is given, the current execution point's filename is used. If the filename has no extension, ``.nim`` is appended for your convenience. @@ -71,16 +71,16 @@ Breakpoint Commands breakpoint contains a line number range. Some examples if it is still unclear: - * ``b br1 12 15 thallo`` creates a breakpoint named ``br1`` that + * ``b 12 15 thallo`` creates a breakpoint that will be triggered if the instruction pointer reaches one of the lines 12-15 in the file ``thallo.nim``. - * ``b br1 12 thallo`` creates a breakpoint named ``br1`` that + * ``b 12 thallo`` creates a breakpoint that will be triggered if the instruction pointer reaches the line 12 in the file ``thallo.nim``. - * ``b br1 12`` creates a breakpoint named ``br1`` that + * ``b 12`` creates a breakpoint that will be triggered if the instruction pointer reaches the line 12 in the current file. - * ``b br1`` creates a breakpoint named ``br1`` that + * ``b`` creates a breakpoint that will be triggered if the instruction pointer reaches the current line in the current file again. |