diff src/debugger.d @ 5:496dfd8f7342 default tip

added: -repeat option for "in", "ov" -run until a line option -run until a function option -break on a function start -n is an alias for ov
author marton@basel.hu
date Sun, 17 Apr 2011 11:05:31 +0200
parents a5fb1bc967e6
children
line wrap: on
line diff
--- a/src/debugger.d	Sun Apr 10 12:15:04 2011 +0200
+++ b/src/debugger.d	Sun Apr 17 11:05:31 2011 +0200
@@ -34,7 +34,7 @@
 
 const uint      VERSION_MAJOR = 0,
                 VERSION_MINOR = 13,
-                VERSION_PATCH = 2;
+                VERSION_PATCH = 3;
 const string	VERSION_STRING =    "Ddbg "~itoa(VERSION_MAJOR)~"."~itoa(VERSION_MINOR)
                                     ~(VERSION_PATCH>0?"."~itoa(VERSION_PATCH):"")~" beta",
                 WELCOME_STRING =	VERSION_STRING~" - D Debugger\n"~
@@ -75,7 +75,7 @@
 
     size_t			    current_address;
     uint                last_line;
-
+   // uint                repeat=0;
     string[][string]	source_files;
     string[]			source_search_paths;