No subject


Tue Aug 30 15:12:41 CDT 2005


$ ./debugger/winedbg
Wine-dbg>help
No process loaded, cannot execute 'help'
Wine-dbg>

   Surely the debugger can help me even if no process has been loaded
yet...
   (I was looking for walk process, ironic isn't it?)


Changelog:

   Alexandre Julliard <julliard at codeweavers.com>

 * debugger/debug.l

   Provide help even when in the NOPROCESS state
   Fixes bug #281


--=20
Fran=E7ois Gouget
fgouget at codeweavers.com
--------------6476528C4A86C4AF63D44A87
Content-Type: text/plain; charset=us-ascii;
 name="p20011007-winedbg_help.diff"
Content-Disposition: inline;
 filename="p20011007-winedbg_help.diff"
Content-Transfer-Encoding: 7bit

Index: debugger/debug.l
===================================================================
RCS file: /home/wine/wine/debugger/debug.l,v
retrieving revision 1.19
diff -u -r1.19 debug.l
--- debugger/debug.l	2001/08/15 17:40:31	1.19
+++ debugger/debug.l	2001/10/07 22:23:31
@@ -94,7 +94,7 @@
 <INITIAL>set|se				{ BEGIN(NOCMD); return tSET; }
 <INITIAL,NOPROCESS>walk|w		{ BEGIN(WALK_CMD); return tWALK; }
 <INITIAL>x				{ BEGIN(FORMAT_EXPECTED); return tEXAM; }
-<INITIAL>help|hel|he|"?"		{ BEGIN(HELP_CMD); return tHELP; }
+<INITIAL,NOPROCESS>help|hel|he|"?"		{ BEGIN(HELP_CMD); return tHELP; }
 
 <INITIAL>backtrace|backtrac|backtra|backt|back|bac|ba|bt { BEGIN(NOCMD); return tBACKTRACE; }
 <INITIAL>where|wher|whe                 { BEGIN(NOCMD); return tBACKTRACE; }

--------------6476528C4A86C4AF63D44A87--





More information about the wine-patches mailing list